MVFC.Pack.Observability 4.0.0

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

MVFC.Pack.Observability

🇧🇷 Leia em Português · ← Back to MVFC.Pack

License Platform NuGet Version NuGet Downloads

Metapackage for observability — distributed tracing, metrics, automatic instrumentation via OpenTelemetry, service discovery and HTTP resilience. Essential for microservices and cloud-native architectures.

Motivation

In cloud-native and microservices architectures, observability is not optional. You need distributed traces to follow a request across services, runtime metrics to detect memory pressure or thread pool exhaustion, and resilient HTTP clients to tolerate transient failures.

Each of these requires its own set of packages, versions and configuration boilerplate. MVFC.Pack.Observability ships the full OpenTelemetry instrumentation stack, service discovery and HTTP resilience as a single, version-locked reference.

Installation

dotnet add package MVFC.Pack.Observability

Quick Start

builder.Services.AddOpenTelemetry()
    .WithTracing(tracing => tracing
        .AddAspNetCoreInstrumentation()
        .AddHttpClientInstrumentation()
        .AddOtlpExporter(o =>
            o.Endpoint = new Uri(builder.Configuration["Otel:Endpoint"]!)))
    .WithMetrics(metrics => metrics
        .AddAspNetCoreInstrumentation()
        .AddRuntimeInstrumentation()
        .AddOtlpExporter());

builder.Services.AddServiceDiscovery();

builder.Services.ConfigureHttpClientDefaults(http =>
    http.AddServiceDiscovery()
        .AddStandardResilienceHandler());

Included Packages

Package Version
Microsoft.Extensions.Http.Resilience 10.3.0
Microsoft.Extensions.ServiceDiscovery 10.3.0
OpenTelemetry.Exporter.OpenTelemetryProtocol 1.15.0
OpenTelemetry.Extensions.Hosting 1.15.0
OpenTelemetry.Instrumentation.AspNetCore 1.15.0
OpenTelemetry.Instrumentation.Http 1.15.0
OpenTelemetry.Instrumentation.Runtime 1.15.0

License

Apache-2.0

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 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
4.0.0 177 4/8/2026
3.0.3 178 3/20/2026
2.0.1 211 2/23/2026
2.0.0 214 2/23/2026