OpenTelemetry.Extensions.Hosting
1.10.0-rc.1
Prefix Reserved
dotnet add package OpenTelemetry.Extensions.Hosting --version 1.10.0-rc.1
NuGet\Install-Package OpenTelemetry.Extensions.Hosting -Version 1.10.0-rc.1
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.10.0-rc.1" />
paket add OpenTelemetry.Extensions.Hosting --version 1.10.0-rc.1
#r "nuget: OpenTelemetry.Extensions.Hosting, 1.10.0-rc.1"
// Install OpenTelemetry.Extensions.Hosting as a Cake Addin #addin nuget:?package=OpenTelemetry.Extensions.Hosting&version=1.10.0-rc.1&prerelease // Install OpenTelemetry.Extensions.Hosting as a Cake Tool #tool nuget:?package=OpenTelemetry.Extensions.Hosting&version=1.10.0-rc.1&prerelease
OpenTelemetry.Extensions.Hosting
Installation
dotnet add package OpenTelemetry.Extensions.Hosting
Overview
The OpenTelemetry.Extensions.Hosting package provides extension methods for
automatically starting (and stopping) OpenTelemetry tracing (TracerProvider
)
and metrics (MeterProvider
) in ASP.NET
Core and
.NET Generic
hosts. These are completely optional extensions meant to simplify the
management of the OpenTelemetry SDK lifecycle.
Extension method reference
Targeting Microsoft.Extensions.DependencyInjection.IServiceCollection
:
AddOpenTelemetry
: Registers an IHostedService to automatically start tracing and/or metric services in the supplied IServiceCollection and then returns anOpenTelemetryBuilder
class.[!NOTE]
AddOpenTelemetry
should be called by application host code only. Library authors see: Registration extension method guidance for library authors.[!NOTE] Multiple calls to
AddOpenTelemetry
will NOT result in multiple providers. Only a singleTracerProvider
and/orMeterProvider
will be created in the targetIServiceCollection
. To establish multiple providers use theSdk.CreateTracerProviderBuilder()
and/orSdk.CreateMeterProviderBuilder()
methods. See TracerProvider configuration and Building a MeterProvider for more details.OpenTelemetryBuilder
methods:ConfigureResource
: Registers a callback action to configure theResourceBuilder
for tracing and metric providers.WithTracing
: Enables tracing and optionally configures theTracerProvider
.WithMetrics
: Enables metrics and optionally configures theMeterProvider
.
Usage
The following example shows how to register OpenTelemetry tracing & metrics in an ASP.NET Core host using the OpenTelemetry.Extensions.Hosting extensions.
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using OpenTelemetry.Metrics;
using OpenTelemetry.Trace;
var appBuilder = WebApplication.CreateBuilder(args);
appBuilder.Services.AddOpenTelemetry()
.ConfigureResource(builder => builder.AddService(serviceName: "MyService"))
.WithTracing(builder => builder.AddConsoleExporter())
.WithMetrics(builder => builder.AddConsoleExporter());
var app = appBuilder.Build();
app.Run();
A fully functional example can be found here.
Resources
To dynamically add resources at startup from the dependency injection you can
provide an IResourceDetector
.
To make use of it add it to the dependency injection and then you can use the
IServiceProvider
to add it to OpenTelemetry:
public class MyResourceDetector : IResourceDetector
{
private readonly IWebHostEnvironment webHostEnvironment;
public MyResourceDetector(IWebHostEnvironment webHostEnvironment)
{
this.webHostEnvironment = webHostEnvironment;
}
public Resource Detect()
{
return ResourceBuilder.CreateEmpty()
.AddService(serviceName: this.webHostEnvironment.ApplicationName)
.AddAttributes(new Dictionary<string, object> { ["host.environment"] = this.webHostEnvironment.EnvironmentName })
.Build();
}
}
services.AddSingleton<MyResourceDetector>();
services.AddOpenTelemetry()
.ConfigureResource(builder =>
builder.AddDetector(sp => sp.GetRequiredService<MyResourceDetector>()))
.WithTracing(builder => builder.AddConsoleExporter())
.WithMetrics(builder => builder.AddConsoleExporter());
Migrating from pre-release versions of OpenTelemetry.Extensions.Hosting
Pre-release versions (all versions prior to 1.4.0) of
OpenTelemetry.Extensions.Hosting
contained signal-specific methods for
configuring tracing and metrics:
AddOpenTelemetryTracing
: Configure OpenTelemetry and register an IHostedService to automatically start tracing services in the supplied IServiceCollection.AddOpenTelemetryMetrics
: Configure OpenTelemetry and register an IHostedService to automatically start metric services in the supplied IServiceCollection.
These methods were marked obsolete and later removed. You should migrate your
code to the new AddOpenTelemetry
method documented above. Refer the
old
and
new
versions of the example application to assist you in your migration.
Hosted Service Ordering and Telemetry Capture
TBD
References
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.0-rc.1.24431.7)
- OpenTelemetry (>= 1.10.0-rc.1)
-
.NETStandard 2.0
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.0-rc.1.24431.7)
- OpenTelemetry (>= 1.10.0-rc.1)
-
net8.0
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.0-rc.1.24431.7)
- OpenTelemetry (>= 1.10.0-rc.1)
-
net9.0
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.0-rc.1.24431.7)
- OpenTelemetry (>= 1.10.0-rc.1)
NuGet packages (264)
Showing the top 5 NuGet packages that depend on OpenTelemetry.Extensions.Hosting:
Package | Downloads |
---|---|
Azure.Monitor.OpenTelemetry.AspNetCore
An OpenTelemetry .NET distro that exports to Azure Monitor |
|
Sitko.Core.App
Sitko.Core is a set of libraries to help build .NET Core applications fast |
|
Steeltoe.Management.OpenTelemetryBase
Steeltoe Management OpenTelemetry |
|
Steeltoe.Management.TracingBase
Base package for enabling request tracing in distributed systems. |
|
MyJetWallet.Sdk.Service
Package Description |
GitHub repositories (112)
Showing the top 5 popular GitHub repositories that depend on OpenTelemetry.Extensions.Hosting:
Repository | Stars |
---|---|
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
|
|
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
JustArchiNET/ArchiSteamFarm
C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.
|
|
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 9 RC2, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
|
|
MassTransit/MassTransit
Distributed Application Framework for .NET
|
Version | Downloads | Last updated | |
---|---|---|---|
1.10.0-rc.1 | 675 | 11/1/2024 | |
1.10.0-beta.1 | 13,426 | 9/30/2024 | |
1.9.0 | 9,199,908 | 6/14/2024 | |
1.9.0-rc.1 | 105,989 | 6/7/2024 | |
1.9.0-alpha.1 | 35,667 | 5/20/2024 | |
1.8.1 | 6,871,191 | 4/18/2024 | |
1.8.0 | 2,339,610 | 4/3/2024 | |
1.8.0-rc.1 | 20,538 | 3/27/2024 | |
1.8.0-beta.1 | 41,599 | 3/14/2024 | |
1.7.0 | 8,265,126 | 12/9/2023 | |
1.7.0-rc.1 | 102,589 | 11/30/2023 | |
1.7.0-alpha.1 | 428,030 | 10/17/2023 | |
1.6.0 | 8,523,846 | 9/6/2023 | |
1.6.0-rc.1 | 373,057 | 8/21/2023 | |
1.6.0-alpha.1 | 288,754 | 7/12/2023 | |
1.5.1 | 5,599,201 | 6/26/2023 | |
1.5.0 | 1,424,394 | 6/6/2023 | |
1.5.0-rc.1 | 140,621 | 5/26/2023 | |
1.5.0-alpha.2 | 955,142 | 4/1/2023 | |
1.5.0-alpha.1 | 493,026 | 3/8/2023 | |
1.4.0 | 8,217,531 | 2/24/2023 | |
1.4.0-rc.4 | 681,259 | 2/11/2023 | |
1.4.0-rc.3 | 547,694 | 2/2/2023 | |
1.4.0-rc.2 | 708,477 | 1/9/2023 | |
1.4.0-rc.1 | 1,096,844 | 12/12/2022 | |
1.0.0-rc9.9 | 1,423,881 | 11/7/2022 | |
1.0.0-rc9.8 | 485,996 | 10/17/2022 | |
1.0.0-rc9.7 | 351,537 | 9/30/2022 | |
1.0.0-rc9.6 | 1,248,812 | 8/18/2022 | |
1.0.0-rc9.5 | 1,219,260 | 8/3/2022 | |
1.0.0-rc9.4 | 6,207,648 | 6/3/2022 | |
1.0.0-rc9.3 | 2,126,395 | 4/20/2022 | |
1.0.0-rc9.2 | 1,828,026 | 4/13/2022 | |
1.0.0-rc9.1 | 659,747 | 3/30/2022 | |
1.0.0-rc9 | 2,896,393 | 2/3/2022 | |
1.0.0-rc8 | 5,560,511 | 10/8/2021 | |
1.0.0-rc7 | 1,993,680 | 7/13/2021 | |
1.0.0-rc6 | 310,193 | 6/26/2021 | |
1.0.0-rc5 | 404,005 | 6/9/2021 | |
1.0.0-rc4 | 328,905 | 4/23/2021 | |
1.0.0-rc3 | 494,644 | 3/19/2021 | |
1.0.0-rc2 | 784,660 | 1/30/2021 | |
1.0.0-rc10 | 117,429 | 3/5/2022 | |
1.0.0-rc1.1 | 518,006 | 11/18/2020 | |
0.8.0-beta.1 | 97,203 | 11/5/2020 | |
0.7.0-beta.1 | 15,905 | 10/16/2020 | |
0.6.0-beta.1 | 135,926 | 9/16/2020 | |
0.5.0-beta.2 | 8,323 | 8/28/2020 | |
0.4.0-beta.2 | 114,223 | 7/25/2020 | |
0.3.0-beta.1 | 1,169 | 7/23/2020 | |
0.2.0-alpha.275 | 180,671 | 5/19/2020 |
For highlights and announcements see: https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.10.0-rc.1/RELEASENOTES.md.
For detailed changes see: https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.10.0-rc.1/src/OpenTelemetry.Extensions.Hosting/CHANGELOG.md.