OpenTelemetry.Instrumentation.AspNet 1.12.0-beta.2
ASP.NET Instrumentation for OpenTelemetry
| Status | |
|---|---|
| Stability | Beta |
| Code Owners | @open-telemetry/dotnet-contrib-maintainers |
This is an Instrumentation Library, which instruments ASP.NET and collect metrics and traces about incoming web requests.
[!NOTE] This package is a pre-release. Until a stable version is released, there can be breaking changes.
Steps to enable OpenTelemetry.Instrumentation.AspNet
Step 1: Install Package
Add a reference to the
OpenTelemetry.Instrumentation.AspNet
package. Also, add any other instrumentations & exporters you will need.
dotnet add package OpenTelemetry.Instrumentation.AspNet
Step 2: Modify Web.config
OpenTelemetry.Instrumentation.AspNet requires adding an additional HttpModule
to your web server. This additional HttpModule is shipped as part of
OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule
which is implicitly brought by OpenTelemetry.Instrumentation.AspNet. The
following shows changes required to your Web.config when using IIS web server.
<system.webServer>
<modules>
<add
name="TelemetryHttpModule"
type="OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule,
OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule"
preCondition="integratedMode,managedHandler" />
</modules>
</system.webServer>
Step 3: Enable ASP.NET Instrumentation at application startup
ASP.NET instrumentation must be enabled at application startup. This is
typically done in the Global.asax.cs.
Traces
The following example demonstrates adding ASP.NET instrumentation with the
extension method .AddAspNetInstrumentation() on TracerProviderBuilder to
an application. This example also sets up
the OTLP (OpenTelemetry Protocol) exporter, which requires adding the package
OpenTelemetry.Exporter.OpenTelemetryProtocol
to the application.
using OpenTelemetry;
using OpenTelemetry.Trace;
public class WebApiApplication : HttpApplication
{
private TracerProvider tracerProvider;
protected void Application_Start()
{
this.tracerProvider = Sdk.CreateTracerProviderBuilder()
.AddAspNetInstrumentation()
.AddOtlpExporter()
.Build();
}
protected void Application_End()
{
this.tracerProvider?.Dispose();
}
}
Metrics
The following example demonstrates adding ASP.NET instrumentation with the
extension method .AddAspNetInstrumentation() on MeterProviderBuilder to
an application. This example also sets up
the OTLP (OpenTelemetry Protocol) exporter, which requires adding the package
OpenTelemetry.Exporter.OpenTelemetryProtocol
to the application.
using OpenTelemetry;
using OpenTelemetry.Metrics;
public class WebApiApplication : HttpApplication
{
private MeterProvider meterProvider;
protected void Application_Start()
{
this.meterProvider = Sdk.CreateMeterProviderBuilder()
.AddAspNetInstrumentation()
.AddOtlpExporter()
.Build();
}
protected void Application_End()
{
this.meterProvider?.Dispose();
}
}
List of metrics produced
The instrumentation is implemented based on metrics semantic conventions. Currently, the instrumentation supports the following metric.
| Name | Instrument Type | Unit | Description |
|---|---|---|---|
http.server.request.duration |
Histogram | s |
Duration of HTTP server requests. |
Advanced trace configuration
This instrumentation can be configured to change the default behavior by using
AspNetTraceInstrumentationOptions, which allows configuring Filter as explained
below.
Trace Filter
[!NOTE] OpenTelemetry has the concept of a Sampler. When using
OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModuletheurl.pathtag is supplied automatically to samplers when telemetry is started for incoming requests. It is recommended to use a sampler which inspectsurl.path(as opposed to theFilteroption described below) in order to perform filtering as it will prevent child spans from being created and bypass data collection for anything NOT recorded by the sampler. The sampler approach will reduce the impact on the process being instrumented for all filtered requests.
This instrumentation by default collects all the incoming http requests. It
allows filtering of requests by using the Filter function in
AspNetTraceInstrumentationOptions. This defines the condition for allowable
requests. The Filter receives the HttpContextBase of the incoming request, and
does not collect telemetry about the request if the Filter returns false or
throws exception.
The following code snippet shows how to use Filter to only allow GET requests.
this.tracerProvider = Sdk.CreateTracerProviderBuilder()
.AddAspNetInstrumentation(
(options) => options.Filter =
(httpContext) =>
{
// only collect telemetry about HTTP GET requests
return httpContext.Request.HttpMethod.Equals("GET");
})
.Build();
Trace Enrich
This instrumentation library provides EnrichWithHttpRequest,
EnrichWithHttpResponse and EnrichWithException options that can be used to
enrich the activity with additional information from the raw HttpRequestBase,
HttpResponseBase and Exception objects respectively. These actions are called
only when activity.IsAllDataRequested is true. It contains the activity
itself (which can be enriched) and the actual raw object.
The following code snippet shows how to enrich the activity using all 3 different options.
this.tracerProvider = Sdk.CreateTracerProviderBuilder()
.AddAspNetInstrumentation(o =>
{
o.EnrichWithHttpRequest = (activity, httpRequest) =>
{
activity.SetTag("physicalPath", httpRequest.PhysicalPath);
};
o.EnrichWithHttpResponse = (activity, httpResponse) =>
{
activity.SetTag("responseType", httpResponse.ContentType);
};
o.EnrichWithException = (activity, exception) =>
{
if (exception.Source != null)
{
activity.SetTag("exception.source", exception.Source);
}
};
})
.Build();
Processor,
is the general extensibility point to add additional properties to any activity.
The Enrich option is specific to this instrumentation, and is provided to get
access to HttpRequestBase and HttpResponseBase.
RecordException
This instrumentation automatically sets Activity Status to Error if an unhandled
exception is thrown. Additionally, RecordException feature may be turned on,
to store the exception to the Activity itself as ActivityEvent.
Advanced metric configuration
This instrumentation can be configured to change the default behavior by using
AspNetMetricsInstrumentationOptions as explained below.
Metric Enrich
This option allows one to enrich the metric with additional information from
the HttpContextBase. The Enrich action is always called unless the metric was
filtered. The callback allows for modifying the tag list. If the callback
throws an exception the metric will still be recorded.
this.meterProvider = Sdk.CreateMeterProviderBuilder()
.AddAspNetInstrumentation(options => options.Enrich =
(HttpContextBase context, ref TagList tags) =>
{
// Add request content type to the metric tags.
if (!string.IsNullOrEmpty(context.Request.ContentType))
{
tags.Add("custom.content.type", context.Request.ContentType);
}
})
.Build();
References
Showing the top 20 packages that depend on OpenTelemetry.Instrumentation.AspNet.
| Packages | Downloads |
|---|---|
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
21 |
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
22 |
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
23 |
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
24 |
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
25 |
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
27 |
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
28 |
|
Honeycomb.OpenTelemetry
Honeycomb's OpenTelemetry SDK
|
29 |
.NET Framework 4.6.2
- OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule (>= 1.12.0-beta.2)
- Microsoft.Extensions.Configuration (>= 9.0.0)
- Microsoft.Extensions.Options (>= 9.0.0)
- OpenTelemetry.Api.ProviderBuilderExtensions (>= 1.12.0 && < 2.0.0)
| Version | Downloads | Last updated |
|---|---|---|
| 1.13.0-rc.1 | 3 | 10/30/2025 |
| 1.13.0-beta.2 | 3 | 10/23/2025 |
| 1.13.0-beta.1 | 4 | 10/19/2025 |
| 1.12.0-beta.2 | 6 | 09/25/2025 |
| 1.12.0-beta.1 | 16 | 05/07/2025 |
| 1.11.0-beta.2 | 18 | 03/15/2025 |
| 1.11.0-beta.1 | 19 | 01/28/2025 |
| 1.10.0-beta.1 | 25 | 12/26/2024 |
| 1.9.0-beta.1 | 25 | 12/14/2024 |
| 1.8.0-beta.3 | 29 | 05/25/2024 |
| 1.8.0-beta.2 | 29 | 05/25/2024 |
| 1.8.0-beta.1 | 32 | 05/25/2024 |
| 1.7.0-beta.2 | 32 | 05/25/2024 |
| 1.7.0-beta.1 | 28 | 05/25/2024 |
| 1.6.0-beta.2 | 31 | 05/25/2024 |
| 1.6.0-beta.1 | 30 | 05/25/2024 |
| 1.0.0-rc9.9 | 31 | 05/25/2024 |
| 1.0.0-rc9.8 | 21 | 05/25/2024 |
| 1.0.0-rc9.7 | 27 | 05/25/2024 |
| 1.0.0-rc9.6 | 28 | 05/25/2024 |
| 1.0.0-rc9.5 | 30 | 05/25/2024 |
| 1.0.0-rc9.4 | 31 | 05/25/2024 |
| 1.0.0-rc9.3 | 29 | 05/25/2024 |
| 1.0.0-rc9.2 | 28 | 05/25/2024 |
| 1.0.0-rc9.1 | 27 | 05/25/2024 |
| 1.0.0-rc9 | 27 | 05/25/2024 |
| 1.0.0-rc8 | 23 | 05/25/2024 |
| 1.0.0-rc7 | 27 | 05/25/2024 |
| 1.0.0-rc6 | 27 | 05/25/2024 |
| 1.0.0-rc5 | 25 | 05/25/2024 |
| 1.0.0-rc4 | 27 | 05/25/2024 |
| 1.0.0-rc3 | 25 | 05/25/2024 |
| 1.0.0-rc2 | 25 | 05/25/2024 |
| 1.0.0-rc1.1 | 26 | 05/25/2024 |
| 0.8.0-beta.1 | 29 | 05/25/2024 |
| 0.7.0-beta.1 | 28 | 05/25/2024 |
| 0.6.0-beta.1 | 31 | 05/25/2024 |
| 0.5.0-beta.2 | 28 | 05/25/2024 |
| 0.4.0-beta.2 | 26 | 05/25/2024 |
| 0.3.0-beta.1 | 25 | 05/25/2024 |