FGutierrez.Core.Observability.Abstractions 1.0.0

dotnet add package FGutierrez.Core.Observability.Abstractions --version 1.0.0
                    
NuGet\Install-Package FGutierrez.Core.Observability.Abstractions -Version 1.0.0
                    
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="FGutierrez.Core.Observability.Abstractions" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FGutierrez.Core.Observability.Abstractions" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="FGutierrez.Core.Observability.Abstractions" />
                    
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 FGutierrez.Core.Observability.Abstractions --version 1.0.0
                    
#r "nuget: FGutierrez.Core.Observability.Abstractions, 1.0.0"
                    
#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 FGutierrez.Core.Observability.Abstractions@1.0.0
                    
#: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=FGutierrez.Core.Observability.Abstractions&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=FGutierrez.Core.Observability.Abstractions&version=1.0.0
                    
Install as a Cake Tool

Core.Observability.Abstractions


Core.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 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 (2)

Showing the top 2 NuGet packages that depend on FGutierrez.Core.Observability.Abstractions:

Package Downloads
FGutierrez.Core.Observability

Standardized observability for .NET 8 Cloud-Native apps with OpenTelemetry and Serilog.

FGutierrez.Core.DistributedCache

Distributed cache abstraction for .NET 8 supporting Redis and In-Memory providers, with native OpenTelemetry integration.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 241 6/19/2026