Itmo.Dev.Platform.Observability 1.4.472

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Itmo.Dev.Platform.Observability --version 1.4.472
                    
NuGet\Install-Package Itmo.Dev.Platform.Observability -Version 1.4.472
                    
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.472" />
                    
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.472" />
                    
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.472
                    
#r "nuget: Itmo.Dev.Platform.Observability, 1.4.472"
                    
#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.472
                    
#: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.472
                    
Install as a Cake Addin
#tool nuget:?package=Itmo.Dev.Platform.Observability&version=1.4.472
                    
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 net10.0 is compatible.  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.484 64 8/18/2026
1.4.482 49 8/17/2026
1.4.480 57 8/17/2026
1.4.478 51 8/17/2026
1.4.476 50 8/17/2026
1.4.474 59 8/17/2026
1.4.472 59 8/17/2026
1.4.468 60 8/16/2026
1.4.466 59 8/16/2026
1.4.464-alpha 43 8/16/2026
1.4.462-alpha 49 8/16/2026
1.4.460-alpha 49 8/16/2026
1.4.453-alpha 56 8/16/2026
1.4.451-alpha 50 8/16/2026
1.4.449 65 8/12/2026
1.4.447 48 8/12/2026
1.4.445 46 8/12/2026
1.4.443 56 8/12/2026
1.4.439 58 8/11/2026
1.4.437 53 8/11/2026
Loading failed

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