Microsoft.Extensions.Telemetry 9.0.0-preview.9.24507.7
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.
Showing the top 20 packages that depend on Microsoft.Extensions.Telemetry.
Packages | Downloads |
---|---|
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
|
1 |
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
|
3 |
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
|
4 |
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
|
5 |
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
|
6 |
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
|
7 |
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
|
10 |
.NET Framework 4.6.2
- Microsoft.Extensions.AmbientMetadata.Application (>= 9.0.0-preview.9.24507.7)
- System.Collections.Immutable (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.ObjectPool (>= 9.0.0-rc.2.24474.3)
- Microsoft.Extensions.Logging.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Bcl.TimeProvider (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Telemetry.Abstractions (>= 9.0.0-preview.9.24507.7)
- Microsoft.Extensions.DependencyInjection.AutoActivation (>= 9.0.0-preview.9.24507.7)
.NET 9.0
- Microsoft.Extensions.ObjectPool (>= 9.0.0-rc.2.24474.3)
- Microsoft.Extensions.Logging.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Telemetry.Abstractions (>= 9.0.0-preview.9.24507.7)
- Microsoft.Extensions.DependencyInjection.AutoActivation (>= 9.0.0-preview.9.24507.7)
- Microsoft.Extensions.AmbientMetadata.Application (>= 9.0.0-preview.9.24507.7)
.NET 8.0
- Microsoft.Extensions.ObjectPool (>= 9.0.0-rc.2.24474.3)
- Microsoft.Extensions.Telemetry.Abstractions (>= 9.0.0-preview.9.24507.7)
- Microsoft.Extensions.Logging.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.AmbientMetadata.Application (>= 9.0.0-preview.9.24507.7)
- Microsoft.Extensions.DependencyInjection.AutoActivation (>= 9.0.0-preview.9.24507.7)
Version | Downloads | Last updated |
---|---|---|
9.0.0-preview.9.24507.7 | 1 | 11/04/2024 |
9.0.0-preview.8.24460.1 | 0 | 09/10/2024 |
9.0.0-preview.7.24412.10 | 0 | 08/14/2024 |
9.0.0-preview.6.24353.1 | 0 | 07/10/2024 |
9.0.0-preview.5.24311.7 | 0 | 06/11/2024 |
9.0.0-preview.4.24271.2 | 6 | 05/29/2024 |
9.0.0-preview.3.24209.3 | 4 | 05/29/2024 |
9.0.0-preview.2.24157.4 | 1 | 05/29/2024 |
9.0.0-preview.1.24108.1 | 7 | 05/29/2024 |
8.10.0 | 0 | 10/08/2024 |
8.9.1 | 0 | 09/06/2024 |
8.9.0 | 0 | 09/05/2024 |
8.8.0 | 0 | 08/13/2024 |
8.7.0 | 0 | 07/10/2024 |
8.6.0 | 0 | 06/11/2024 |
8.5.0 | 5 | 06/02/2024 |
8.4.0 | 2 | 06/02/2024 |
8.3.0 | 3 | 06/02/2024 |
8.2.0 | 5 | 06/02/2024 |
8.1.0 | 7 | 06/02/2024 |
8.0.0 | 6 | 06/02/2024 |
8.0.0-rc.2.23510.2 | 7 | 05/29/2024 |
8.0.0-rc.1.23453.1 | 2 | 05/29/2024 |
8.0.0-preview.7.23407.5 | 7 | 05/29/2024 |
8.0.0-preview.6.23360.2 | 5 | 05/29/2024 |
8.0.0-preview.5.23308.3 | 6 | 05/29/2024 |
8.0.0-preview.4.23273.7 | 2 | 05/29/2024 |