OpenTelemetry.Extensions.Hosting 1.10.0-rc.1

Prefix Reserved
This is a prerelease version of OpenTelemetry.Extensions.Hosting.
dotnet add package OpenTelemetry.Extensions.Hosting --version 1.10.0-rc.1                
NuGet\Install-Package OpenTelemetry.Extensions.Hosting -Version 1.10.0-rc.1                
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="OpenTelemetry.Extensions.Hosting" Version="1.10.0-rc.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpenTelemetry.Extensions.Hosting --version 1.10.0-rc.1                
#r "nuget: OpenTelemetry.Extensions.Hosting, 1.10.0-rc.1"                
#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 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

NuGet NuGet

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 an OpenTelemetryBuilder 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 single TracerProvider and/or MeterProvider will be created in the target IServiceCollection. To establish multiple providers use the Sdk.CreateTracerProviderBuilder() and/or Sdk.CreateMeterProviderBuilder() methods. See TracerProvider configuration and Building a MeterProvider for more details.

    OpenTelemetryBuilder methods:

    • ConfigureResource: Registers a callback action to configure the ResourceBuilder for tracing and metric providers.

    • WithTracing: Enables tracing and optionally configures the TracerProvider.

    • WithMetrics: Enables metrics and optionally configures the MeterProvider.

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:

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 is deprecated.
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