Itmo.Dev.Platform.Observability 1.4.326

Prefix Reserved
dotnet add package Itmo.Dev.Platform.Observability --version 1.4.326
                    
NuGet\Install-Package Itmo.Dev.Platform.Observability -Version 1.4.326
                    
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.326" />
                    
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.326" />
                    
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.326
                    
#r "nuget: Itmo.Dev.Platform.Observability, 1.4.326"
                    
#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.326
                    
#: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.326
                    
Install as a Cake Addin
#tool nuget:?package=Itmo.Dev.Platform.Observability&version=1.4.326
                    
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 net9.0 is compatible.  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.326 182 12/23/2025
1.4.324 113 12/13/2025
1.4.322 358 11/17/2025
1.4.318 114 11/16/2025
1.4.316 131 10/25/2025
1.4.312 192 10/16/2025
1.4.308 156 10/9/2025
1.4.302 152 10/9/2025
1.4.298 142 10/5/2025
1.4.296 140 10/5/2025
1.4.294 205 5/28/2025
1.4.292 155 5/27/2025
1.4.290 182 5/27/2025
1.4.288 199 5/17/2025
1.4.282 213 5/11/2025
1.4.275 86 5/10/2025
1.4.269 92 5/10/2025
1.4.261 189 2/16/2025
1.4.259 128 2/16/2025
1.4.255 153 2/6/2025
1.4.251 125 2/3/2025
1.4.234 885 11/18/2024
1.4.230 195 10/31/2024
1.4.228 91 10/31/2024
1.4.226 100 10/31/2024
1.4.224 84 10/31/2024
1.4.220 106 10/31/2024
1.3.218 104 10/30/2024
1.3.216 102 10/30/2024
1.2.214 108 10/30/2024
1.2.212 108 10/30/2024
1.2.210 110 10/30/2024
1.2.208 105 10/30/2024
1.2.206 99 10/30/2024
1.2.204 117 10/29/2024
1.2.202 92 10/29/2024
1.1.196 100 10/29/2024
1.1.193 99 10/29/2024
1.1.190 100 10/26/2024
1.0.174 100 10/25/2024
1.0.133 94 10/25/2024
1.0.132 97 10/24/2024
1.0.131 165 10/24/2024
1.0.130 108 10/24/2024
1.0.129 104 10/24/2024
1.0.128 111 10/24/2024
1.0.127 109 10/23/2024
1.0.126 117 10/11/2024
1.0.125 109 10/11/2024
1.0.124 96 10/11/2024
1.0.123 106 10/11/2024
1.0.122 103 10/11/2024
1.0.121 121 10/11/2024
1.0.120 112 10/11/2024
1.0.119 115 10/11/2024
1.0.118 126 10/11/2024
1.0.117 119 10/10/2024
1.0.115 123 10/10/2024

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