Microsoft.Extensions.Telemetry.Abstractions 8.4.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.Extensions.Telemetry.Abstractions --version 8.4.0
NuGet\Install-Package Microsoft.Extensions.Telemetry.Abstractions -Version 8.4.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="Microsoft.Extensions.Telemetry.Abstractions" Version="8.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Telemetry.Abstractions --version 8.4.0
#r "nuget: Microsoft.Extensions.Telemetry.Abstractions, 8.4.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.
// Install Microsoft.Extensions.Telemetry.Abstractions as a Cake Addin
#addin nuget:?package=Microsoft.Extensions.Telemetry.Abstractions&version=8.4.0

// Install Microsoft.Extensions.Telemetry.Abstractions as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Telemetry.Abstractions&version=8.4.0

Microsoft.Extensions.Telemetry.Abstractions

This package contains common abstractions for high-level telemetry primitives. Here are the main features it provides:

  • Enhanced Logging Capabilities
  • Log Enrichment
  • Latency Measurement
  • HTTP Request Metadata Handling

Install the package

From the command-line:

dotnet add package Microsoft.Extensions.Telemetry.Abstractions

Or directly in the C# project file:

<ItemGroup>
  <PackageReference Include="Microsoft.Extensions.Telemetry.Abstractions" Version="[CURRENTVERSION]" />
</ItemGroup>

Usage

Enhanced Logging Capabilities

The package includes a custom logging generator that enhances the default .NET logging capabilities by replacing the default generator. This generator automatically logs the contents of collections and offers advanced logging features, significantly improving the debugging and monitoring process.

[LoggerMessage(1, LogLevel.Information, "These are the contents of my dictionary: {temperature}")]
internal static partial void LogMyDictionary(ILogger<Program> logger, Dictionary<int, string> temperature);

It also adds the LogProperties attribute which can be applied to an object parameter of a LoggerMessage method. It introspects the passed-in object and automatically adds tags for all its properties. This leads to more informative logs without the need for manual tagging of each property.

[LoggerMessage(1, LogLevel.Information, "Detected a new temperature: {temperature}")]
internal static partial void LogNewTemperature(ILogger<Program> logger, [LogProperties] Temperature temperature);

internal record Temperature(double value, TemperatureUnit unit);

Log Enrichment

Logging data can be enriched by adding custom log enrichers to the service collection. This can be done using specific implementations or generic types.

// Using a specific implementation
builder.Services.AddLogEnricher(new CustomLogEnricher());

// Using a generic type
builder.Services.AddLogEnricher<AnotherLogEnricher>();

Create custom log enrichers by implementing the ILogEnricher interface.

public class CustomLogEnricher : ILogEnricher
{
    public void Enrich(IEnrichmentTagCollector collector)
    {
        // Add custom logic to enrich log data
        collector.Add("CustomTag", "CustomValue");
    }
}

Latency Measurement

To track latency in an application it is possible to register checkpoint, measure, and tag names using the following methods:

builder.Services.RegisterCheckpointNames("databaseQuery", "externalApiCall");
builder.Services.RegisterMeasureNames("responseTime", "processingTime");
builder.Services.RegisterTagNames("userId", "transactionId");

Implement the ILatencyDataExporter to export latency data. This can be integrated with external systems or logging frameworks.

public class CustomLatencyDataExporter : ILatencyDataExporter
{
    public async Task ExportAsync(LatencyData data, CancellationToken cancellationToken)
    {
        // Export logic here
    }
}

Use the latency context to track performance metrics in your application.

public void YourMethod(ILatencyContextProvider contextProvider)
{
    var context = contextProvider.CreateContext();
    var checkpointToken = context.GetCheckpointToken("databaseQuery");

    // Start measuring
    context.AddCheckpoint(checkpointToken);

    // Perform operations...

    // End measuring
    context.AddCheckpoint(checkpointToken);

    // Optionally, record measures and tags
    context.RecordMeasure(context.GetMeasureToken("responseTime"), measureValue);
    context.SetTag(context.GetTagToken("userId"), "User123");
}

Http Request Metadata Handling

The IDownstreamDependencyMetadata interface is designed to capture and store metadata about the downstream dependencies of an HTTP request. This is particularly useful for understanding external service dependencies and their impact on your application's performance and reliability.

The IOutgoingRequestContext interface provides a mechanism for associating metadata with outgoing HTTP requests. This allows you to enrich outbound requests with additional information that can be used for logging, telemetry, and analysis.

Feedback & Contributing

We welcome feedback and contributions in our GitHub repo.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (17)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Telemetry.Abstractions:

Package Downloads
Microsoft.Extensions.Telemetry The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides canonical implementations of telemetry abstractions.

Microsoft.Extensions.Resilience The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Extensions to the Polly libraries to enrich telemetry with metadata and exception summaries.

Microsoft.Extensions.Diagnostics.Testing The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Hand-crafted fakes to make telemetry-related testing easier.

Microsoft.Extensions.Diagnostics.HealthChecks.Common The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Health check implementations.

Microsoft.Extensions.Diagnostics.ResourceMonitoring The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Measures processor and memory usage.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.0-preview.3.24209.3 2,407 4/11/2024
9.0.0-preview.2.24157.4 3,569 3/12/2024
9.0.0-preview.1.24108.1 2,536 2/13/2024
8.4.0 87,653 4/9/2024
8.3.0 183,050 3/12/2024
8.2.0 362,232 2/13/2024
8.1.0 255,051 1/9/2024
8.0.0 445,685 11/14/2023
8.0.0-rc.2.23510.2 17,820 10/10/2023
8.0.0-rc.1.23453.1 2,390 9/12/2023
8.0.0-preview.7.23407.5 2,327 8/8/2023
8.0.0-preview.6.23360.2 822 7/12/2023
8.0.0-preview.5.23308.3 2,599 6/14/2023
8.0.0-preview.4.23273.7 2,631 5/23/2023