Microsoft.Extensions.Telemetry
8.9.1
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Telemetry --version 8.9.1
NuGet\Install-Package Microsoft.Extensions.Telemetry -Version 8.9.1
<PackageReference Include="Microsoft.Extensions.Telemetry" Version="8.9.1" />
paket add Microsoft.Extensions.Telemetry --version 8.9.1
#r "nuget: Microsoft.Extensions.Telemetry, 8.9.1"
// Install Microsoft.Extensions.Telemetry as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Telemetry&version=8.9.1 // Install Microsoft.Extensions.Telemetry as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Telemetry&version=8.9.1
Microsoft.Extensions.Telemetry
This library provides advanced logging and telemetry enrichment capabilities for .NET applications. It allows for detailed and configurable enrichment of log entries, along with enhanced latency monitoring and logging features. It is built for applications needing sophisticated telemetry and logging insights.
Install the package
From the command-line:
dotnet add package Microsoft.Extensions.Telemetry
Or directly in the C# project file:
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Telemetry" Version="[CURRENTVERSION]" />
</ItemGroup>
Usage
Service Log Enrichment
Enriches logs with application-specific information based on ApplicationMetadata
information. The bellow calls will add the service log enricher to the service collection.
// Add service log enricher with default settings
builder.Services.AddServiceLogEnricher();
// Or configure with options
builder.Services.AddServiceLogEnricher(options =>
{
options.ApplicationName = true;
options.BuildVersion = true;
options.DeploymentRing = true;
options.EnvironmentName = true;
});
Latency Monitoring
Provides tools for latency data collection and export. The bellow example uses the built-in Console exporter, but custom exporters can be created by implementing the ILatencyDataExporter
interface.
// Add latency console data exporter with configuration
builder.Services.AddConsoleLatencyDataExporter(options =>
{
options.OutputCheckpoints = true;
options.OutputMeasures = true;
options.OutputTags = true;
});
In order for the latency data to be exported, a call to ILatencyDataExporter.ExportAsync()
is required. This can either be called manually, or by using the Request Latency Middleware inside the Microsoft.AspNetCore.Diagnostics.Middleware
package by adding:
// Add Latency Context
builder.Services.AddLatencyContext();
// Add Checkpoints, Measures, Tags
builder.Services.RegisterCheckpointNames("databaseQuery", "externalApiCall");
builder.Services.RegisterMeasureNames("responseTime", "processingTime");
builder.Services.RegisterTagNames("userId", "transactionId");
// Add Console Latency exporter.
builder.Services.AddConsoleLatencyDataExporter();
// Optionally add custom exporters.
builder.Services.AddSingleton<ILatencyDataExporter, MyCustomExporter>();
// Add Request latency telemetry.
builder.Services.AddRequestLatencyTelemetry();
// ...
// Add Request Latency Middleware which will automatically call ExportAsync on all registered latency exporters.
app.UseRequestLatencyTelemetry();
Logging Enhancements
Offers additional logging capabilities like stack trace capturing, exception message inclusion, and log redaction.
// Enable log enrichment.
builder.Logging.EnableEnrichment(options =>
{
options.CaptureStackTraces = true;
options.IncludeExceptionMessage = true;
options.MaxStackTraceLength = 500;
options.UseFileInfoForStackTraces = true;
});
builder.Services.AddServiceLogEnricher(); // <- This call is required in order for the enricher to be added into the service collection.
// Enable log redaction
builder.Logging.EnableRedaction(options =>
{
options.ApplyDiscriminator = true;
});
builder.Services.AddRedaction(); // <- This call is required in order for the redactor provider to be added into the service collection.
Feedback & Contributing
We welcome feedback and contributions in our GitHub repo.
Product | Versions 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. |
-
.NETFramework 4.6.2
- Microsoft.Bcl.TimeProvider (>= 8.0.1)
- Microsoft.Extensions.AmbientMetadata.Application (>= 8.9.1)
- Microsoft.Extensions.DependencyInjection.AutoActivation (>= 8.9.1)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.ObjectPool (>= 8.0.8)
- Microsoft.Extensions.Telemetry.Abstractions (>= 8.9.1)
- System.Collections.Immutable (>= 8.0.0)
-
net6.0
- Microsoft.Bcl.TimeProvider (>= 8.0.1)
- Microsoft.Extensions.AmbientMetadata.Application (>= 8.9.1)
- Microsoft.Extensions.DependencyInjection.AutoActivation (>= 8.9.1)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.ObjectPool (>= 8.0.8)
- Microsoft.Extensions.Telemetry.Abstractions (>= 8.9.1)
- System.Collections.Immutable (>= 8.0.0)
-
net8.0
- Microsoft.Extensions.AmbientMetadata.Application (>= 8.9.1)
- Microsoft.Extensions.DependencyInjection.AutoActivation (>= 8.9.1)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.ObjectPool (>= 8.0.8)
- Microsoft.Extensions.Telemetry.Abstractions (>= 8.9.1)
NuGet packages (10)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Telemetry:
Package | Downloads |
---|---|
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client. |
|
Neon.Service
Service library supporting application deployment as containers as well as in-process for testing |
|
Tanka.GraphQL.Server
GraphQL Query, Mutation and Subscription library |
|
Microsoft.AspNetCore.Diagnostics.Middleware
ASP.NET Core middleware for collecting high-quality telemetry. |
|
Neon.Temporal
Useful classes and extensions for Temporal |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Microsoft.Extensions.Telemetry:
Repository | Stars |
---|---|
DataDog/dd-trace-dotnet
.NET Client Library for Datadog APM
|
Version | Downloads | Last updated |
---|---|---|
9.0.0-preview.9.24507.7 | 15,744 | 10/8/2024 |
9.0.0-preview.8.24460.1 | 14,583 | 9/10/2024 |
9.0.0-preview.7.24412.10 | 5,351 | 8/14/2024 |
9.0.0-preview.6.24353.1 | 4,772 | 7/10/2024 |
9.0.0-preview.5.24311.7 | 4,952 | 6/11/2024 |
9.0.0-preview.4.24271.2 | 5,916 | 5/21/2024 |
9.0.0-preview.3.24209.3 | 7,384 | 4/11/2024 |
9.0.0-preview.2.24157.4 | 3,436 | 3/12/2024 |
9.0.0-preview.1.24108.1 | 2,017 | 2/13/2024 |
8.10.0 | 425,512 | 10/8/2024 |
8.9.1 | 613,091 | 9/6/2024 |
8.9.0 | 40,591 | 9/5/2024 |
8.8.0 | 588,132 | 8/13/2024 |
8.7.0 | 853,435 | 7/10/2024 |
8.6.0 | 641,121 | 6/11/2024 |
8.5.0 | 758,035 | 5/14/2024 |
8.4.0 | 1,112,258 | 4/9/2024 |
8.3.0 | 500,728 | 3/12/2024 |
8.2.0 | 842,323 | 2/13/2024 |
8.1.0 | 378,877 | 1/9/2024 |
8.0.0 | 876,053 | 11/14/2023 |
8.0.0-rc.2.23510.2 | 5,110 | 10/10/2023 |
8.0.0-rc.1.23453.1 | 1,781 | 9/12/2023 |
8.0.0-preview.7.23407.5 | 1,318 | 8/8/2023 |
8.0.0-preview.6.23360.2 | 730 | 7/12/2023 |
8.0.0-preview.5.23308.3 | 2,846 | 6/14/2023 |
8.0.0-preview.4.23273.7 | 2,682 | 5/23/2023 |