Itmo.Dev.Platform.Logging 1.0.115

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Itmo.Dev.Platform.Logging --version 1.0.115                
NuGet\Install-Package Itmo.Dev.Platform.Logging -Version 1.0.115                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Itmo.Dev.Platform.Logging" Version="1.0.115" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Itmo.Dev.Platform.Logging --version 1.0.115                
#r "nuget: Itmo.Dev.Platform.Logging, 1.0.115"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Itmo.Dev.Platform.Logging as a Cake Addin
#addin nuget:?package=Itmo.Dev.Platform.Logging&version=1.0.115

// Install Itmo.Dev.Platform.Logging as a Cake Tool
#tool nuget:?package=Itmo.Dev.Platform.Logging&version=1.0.115                

Itmo.Dev.Platform.Common

Package contains methods to connect Serilog and Sink to Sentry.

Usage example:

builder.AddPlatformSentry();
builder.Host.AddPlatformSerilog(builder.Configuration);

// ...

var app = builder.Build();

app.UseRouting();
// UsePlatformSentryTracing should be placed right after UseRouting middleware
app.UsePlatformSentryTracing(builder.Configuration);

Sentry application settings example:

{
  "Sentry": {
    "Enabled": true,
    "Environment": "Production",
    "Dsn": "",
    "Debug": false,
    "TracesSampleRate": 1.0,
    "MinimumEventLevel": "Warning"
  }
}

Serilog application settings example:

{
  "Serilog": {
    "Using": [
      "Serilog.Sinks.Console",
      "Serilog.Sinks.File"
    ],
    "MinimumLevel": {
      "Default": "Verbose",
      "Override": {
        "Microsoft.Hosting.Lifetime": "Information",
        "Microsoft.AspNetCore": "Warning",
        "Microsoft.EntityFrameworkCore": "Warning",
        "Grpc.AspNetCore.Server.Model.Internal": "Information"
      }
    },
    "WriteTo": [
      {
        "Name": "Console",
        "Args": {
          "outputTemplate": "{Timestamp:T} [{Level:u3}] {SourceContext} {Message}{NewLine}{Exception}"
        }
      },
      {
        "Name": "File",
        "Args": {
          "path": "Serilogs/${ApplicationName}/AppLogs_.log",
          "rollingInterval": "Day",
          "outputTemplate": "{Timestamp:o} [{Level:u3}] {SourceContext} {Message}{NewLine}{Exception}",
          "retainedFileCountLimit": 30
        }
      }
    ]
  }
}

N.B.

Don't forget to add required Sinks:

  • Serilog.Sinks.Console
  • Serilog.Sinks.File
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.126 72 10/11/2024
1.0.125 68 10/11/2024
1.0.124 64 10/11/2024
1.0.123 68 10/11/2024
1.0.122 71 10/11/2024
1.0.121 63 10/11/2024
1.0.120 71 10/11/2024
1.0.119 71 10/11/2024
1.0.118 75 10/11/2024
1.0.117 73 10/10/2024
1.0.115 66 10/10/2024
1.0.113 70 10/6/2024
1.0.112 164 8/22/2024
1.0.111 186 5/14/2024
1.0.110 112 5/13/2024
1.0.109 95 5/13/2024
1.0.108 117 5/6/2024
1.0.107 105 5/6/2024
1.0.106 112 5/6/2024
1.0.105 98 5/4/2024
1.0.102 110 5/4/2024
1.0.101 104 4/26/2024
1.0.100 118 4/22/2024
1.0.99 96 4/21/2024
1.0.98 104 4/21/2024
1.0.97 105 4/19/2024
1.0.96 109 4/18/2024
1.0.95 111 4/18/2024
1.0.94 164 2/13/2024
1.0.93 108 2/10/2024
1.0.91 104 2/10/2024
1.0.90 106 2/10/2024
1.0.89 463 2/3/2024
1.0.86 100 2/1/2024
1.0.85 103 1/30/2024
1.0.83 150 1/27/2024
1.0.82 370 1/5/2024
1.0.81 254 1/3/2024
1.0.80 122 12/30/2023
1.0.79 107 12/30/2023
1.0.78 125 12/30/2023
1.0.77 111 12/28/2023
1.0.76 113 12/27/2023
1.0.75 138 12/9/2023
1.0.73 145 11/30/2023
1.0.72 138 11/27/2023
1.0.71 118 11/27/2023
1.0.70 113 11/27/2023
1.0.69 125 11/27/2023
1.0.67 123 11/25/2023
1.0.66 109 11/25/2023
1.0.65 122 11/23/2023
1.0.64 98 11/23/2023
1.0.62 117 11/18/2023
1.0.61 121 11/18/2023
1.0.60 117 11/17/2023
1.0.59 118 11/16/2023
1.0.58 126 11/13/2023
1.0.57 111 11/12/2023
1.0.56 110 11/12/2023
1.0.54 106 11/7/2023
1.0.53 125 11/4/2023
1.0.52 136 10/29/2023
1.0.51 120 10/29/2023
1.0.50 128 10/29/2023
1.0.48 132 10/29/2023

Itmo.Dev.Platform