Itmo.Dev.Platform.Observability 1.4.294

Prefix Reserved
dotnet add package Itmo.Dev.Platform.Observability --version 1.4.294
                    
NuGet\Install-Package Itmo.Dev.Platform.Observability -Version 1.4.294
                    
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.Observability" Version="1.4.294" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Itmo.Dev.Platform.Observability" Version="1.4.294" />
                    
Directory.Packages.props
<PackageReference Include="Itmo.Dev.Platform.Observability" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Itmo.Dev.Platform.Observability --version 1.4.294
                    
#r "nuget: Itmo.Dev.Platform.Observability, 1.4.294"
                    
#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.
#:package Itmo.Dev.Platform.Observability@1.4.294
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Itmo.Dev.Platform.Observability&version=1.4.294
                    
Install as a Cake Addin
#tool nuget:?package=Itmo.Dev.Platform.Observability&version=1.4.294
                    
Install as a Cake Tool

Itmo.Dev.Platform.Observability

Usage

Call AddPlatformObservability extension method on your WebApplicationBuilder.

Configuration

Tracing

{
  "Platform": {
    "Observability": {
      "Tracing": {
        "IsEnabled": bool,
        "Sources": [
          string
        ]
      }
    }
  }
}

Metrics

{
  "Platform": {
    "Observability": {
      "Metrics": {
        "IsEnabled": bool
      }
    }
  }
}

Logging

{
  "Platform": {
    "Observability": {
      "Logging": {
        "Serilog": {
          // Your serilog configuration
        }
      }
    }
  }
}

Sentry

{
  "Platform": {
    "Observability": {
      "Sentry": {
        "IsEnabled": bool
        "Configuration": {
          // Your Sentry configuration
        }
      }
    }
  }
}

Health checks

{
  "Platform": {
    "Observability": {
      "HealthChecks": {
        "IsEnabled": bool,
        "StartupCheckUri": string,
        "ReadinessCheckUri": string,
        "LivenessCheckUri": string
      }
    }
  }
}
field default value
StartupCheckUri /health/startup
ReadinessCheckUri /health/readyz
LivenessCheckUri /health/livez
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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.4.294 129 5/28/2025
1.4.292 119 5/27/2025
1.4.290 145 5/27/2025
1.4.288 92 5/17/2025
1.4.282 177 5/11/2025
1.4.275 58 5/10/2025
1.4.269 58 5/10/2025
1.4.261 159 2/16/2025
1.4.259 101 2/16/2025
1.4.255 125 2/6/2025
1.4.251 91 2/3/2025
1.4.234 710 11/18/2024
1.4.230 163 10/31/2024
1.4.228 66 10/31/2024
1.4.226 76 10/31/2024
1.4.224 62 10/31/2024
1.4.220 71 10/31/2024
1.3.218 77 10/30/2024
1.3.216 74 10/30/2024
1.2.214 81 10/30/2024
1.2.212 81 10/30/2024
1.2.210 73 10/30/2024
1.2.208 78 10/30/2024
1.2.206 73 10/30/2024
1.2.204 91 10/29/2024
1.2.202 64 10/29/2024
1.1.196 68 10/29/2024
1.1.193 71 10/29/2024
1.1.190 71 10/26/2024
1.0.174 71 10/25/2024
1.0.133 69 10/25/2024
1.0.132 73 10/24/2024
1.0.131 137 10/24/2024
1.0.130 76 10/24/2024
1.0.129 77 10/24/2024
1.0.128 77 10/24/2024
1.0.127 81 10/23/2024
1.0.126 89 10/11/2024
1.0.125 83 10/11/2024
1.0.124 74 10/11/2024
1.0.123 83 10/11/2024
1.0.122 76 10/11/2024
1.0.121 87 10/11/2024
1.0.120 82 10/11/2024
1.0.119 85 10/11/2024
1.0.118 95 10/11/2024
1.0.117 89 10/10/2024
1.0.115 87 10/10/2024

Added HealthChecks logging override; changed HealthChecks default uri's;