CoreSystem.Observability.Abstractions
1.0.0
dotnet add package CoreSystem.Observability.Abstractions --version 1.0.0
NuGet\Install-Package CoreSystem.Observability.Abstractions -Version 1.0.0
<PackageReference Include="CoreSystem.Observability.Abstractions" Version="1.0.0" />
<PackageVersion Include="CoreSystem.Observability.Abstractions" Version="1.0.0" />
<PackageReference Include="CoreSystem.Observability.Abstractions" />
paket add CoreSystem.Observability.Abstractions --version 1.0.0
#r "nuget: CoreSystem.Observability.Abstractions, 1.0.0"
#:package CoreSystem.Observability.Abstractions@1.0.0
#addin nuget:?package=CoreSystem.Observability.Abstractions&version=1.0.0
#tool nuget:?package=CoreSystem.Observability.Abstractions&version=1.0.0
Core.Observability.Abstractions
CoreSystem.Observability.Abstractions is the modular observability core for the CoreSystem ecosystem. It provides the base contracts required to implement health checks and telemetry (OpenTelemetry) in a decoupled manner within .NET 8.0 applications.
🚀 Purpose
This project eliminates the need to couple monitoring logic with business logic. Through the use of contribution interfaces, any module can define its own metrics, traces, and health checks, which are then automatically discovered and registered by the Core.Observability engine.
📦 Architecture
The system is built on an assembly-discovery pattern, allowing seamless integration across distributed modules.
🛠 Main Interfaces
1. IHealthCheckContributor
Allows modules to register their own health verification checks.
Responsibilities:
- Define health checks specific to a module.
- Register health check implementations in a centralized manner.
- Enable automatic discovery and registration by the observability engine.
Example use cases:
- Database connectivity validation.
- External API availability checks.
- Message broker health verification.
- Cache service status monitoring.
public interface IHealthCheckContributor
{
void Configure(IHealthChecksBuilder builder);
}
| Product | Versions 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. |
-
net8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.28)
- Microsoft.Extensions.Options (>= 8.0.2)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on CoreSystem.Observability.Abstractions:
| Package | Downloads |
|---|---|
|
CoreSystem.Resilience
Production-ready resilience framework for .NET 8 with configurable resilience pipelines, Retry, Timeout, Circuit Breaker, and OpenTelemetry metrics. |
|
|
CoreSystem.Cache
Production-ready cache abstraction for .NET 8 with In-Memory caching, extensible external storage, tag-based invalidation, HTTP response caching, and OpenTelemetry metrics. |
|
|
CoreSystem.Idempotency
Production-ready idempotency framework for ASP.NET Core featuring exactly-once request processing, request fingerprinting, response replay, OpenTelemetry integration, and a provider-based storage architecture. |
|
|
CoreSystem.Idempotency.Redis
Production-ready Redis storage provider for CoreSystem.Idempotency, providing high-performance distributed persistence through the IIdempotencyStorage abstraction. |
|
|
CoreSystem.Idempotency.PostgreSql
Production-ready PostgreSQL storage provider for CoreSystem.Idempotency, providing durable persistence through the IIdempotencyStorage abstraction with automatic schema creation and Dapper-based data access. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 601 | 7/3/2026 |