Itmo.Dev.Platform.Observability 1.4.259

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.259                
NuGet\Install-Package Itmo.Dev.Platform.Observability -Version 1.4.259                
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.259" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Itmo.Dev.Platform.Observability --version 1.4.259                
#r "nuget: Itmo.Dev.Platform.Observability, 1.4.259"                
#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.Observability as a Cake Addin
#addin nuget:?package=Itmo.Dev.Platform.Observability&version=1.4.259

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

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. 
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.261 94 2/16/2025
1.4.259 73 2/16/2025
1.4.255 88 2/6/2025
1.4.251 71 2/3/2025
1.4.234 544 11/18/2024
1.4.230 153 10/31/2024
1.4.228 56 10/31/2024
1.4.226 65 10/31/2024
1.4.224 52 10/31/2024
1.4.220 60 10/31/2024
1.3.218 66 10/30/2024
1.3.216 60 10/30/2024
1.2.214 71 10/30/2024
1.2.212 72 10/30/2024
1.2.210 60 10/30/2024
1.2.208 66 10/30/2024
1.2.206 61 10/30/2024
1.2.204 74 10/29/2024
1.2.202 51 10/29/2024
1.1.196 56 10/29/2024
1.1.193 58 10/29/2024
1.1.190 62 10/26/2024
1.0.174 57 10/25/2024
1.0.133 59 10/25/2024
1.0.132 62 10/24/2024
1.0.131 121 10/24/2024
1.0.130 64 10/24/2024
1.0.129 64 10/24/2024
1.0.128 66 10/24/2024
1.0.127 71 10/23/2024
1.0.126 78 10/11/2024
1.0.125 67 10/11/2024
1.0.124 65 10/11/2024
1.0.123 69 10/11/2024
1.0.122 66 10/11/2024
1.0.121 74 10/11/2024
1.0.120 71 10/11/2024
1.0.119 74 10/11/2024
1.0.118 84 10/11/2024
1.0.117 75 10/10/2024
1.0.115 73 10/10/2024

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