Azure.Monitor.OpenTelemetry.Exporter
1.2.0
Prefix Reserved
See the version list below for details.
dotnet add package Azure.Monitor.OpenTelemetry.Exporter --version 1.2.0
NuGet\Install-Package Azure.Monitor.OpenTelemetry.Exporter -Version 1.2.0
<PackageReference Include="Azure.Monitor.OpenTelemetry.Exporter" Version="1.2.0" />
paket add Azure.Monitor.OpenTelemetry.Exporter --version 1.2.0
#r "nuget: Azure.Monitor.OpenTelemetry.Exporter, 1.2.0"
// Install Azure.Monitor.OpenTelemetry.Exporter as a Cake Addin #addin nuget:?package=Azure.Monitor.OpenTelemetry.Exporter&version=1.2.0 // Install Azure.Monitor.OpenTelemetry.Exporter as a Cake Tool #tool nuget:?package=Azure.Monitor.OpenTelemetry.Exporter&version=1.2.0
Azure Monitor Exporter client library for .NET
The OpenTelemetry .NET exporters which send telemetry data to Azure Monitor following the OpenTelemetry Specification.
Getting started
Prerequisites
- Azure Subscription: To use Azure services, including Azure Monitor Exporter for OpenTelemetry .NET, you'll need a subscription. If you do not have an existing Azure account, you may sign up for a free trial or use your Visual Studio Subscription benefits when you create an account.
- Azure Application Insights Connection String: To send telemetry data to the monitoring service you'll need connection string from Azure Application Insights. If you are not familiar with creating Azure resources, you may wish to follow the step-by-step guide for Create an Application Insights resource and copy the connection string.
Install the package
Latest Version:
Install the Azure Monitor Exporter for OpenTelemetry .NET with NuGet:
dotnet add package Azure.Monitor.OpenTelemetry.Exporter
Nightly builds
Nightly builds are available from this repo's dev feed. These are provided without support and are not intended for production workloads.
Add the Exporter
The following examples demonstrate how to add the AzureMonitorExporter
to your OpenTelemetry configuration.
Traces
Sdk.CreateTracerProviderBuilder() .AddAzureMonitorTraceExporter(o => o.ConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000") .Build();
For a complete example see TraceDemo.cs.
Metrics
Sdk.CreateMeterProviderBuilder() .AddAzureMonitorMetricExporter(o => o.ConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000") .Build();
For a complete example see MetricDemo.cs.
Logs
LoggerFactory.Create(builder => { builder.AddOpenTelemetry(options => { options.AddAzureMonitorLogExporter(o => o.ConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000"); }); });
For a complete example see LogDemo.cs.
Authenticate the client
Azure Active Directory (AAD) authentication is an optional feature that can be used with the Azure Monitor Exporter. This is made easy with the Azure Identity library, which provides support for authenticating Azure SDK clients with their corresponding Azure services.
There are two options to enable AAD authentication. Note that if both have been set AzureMonitorExporterOptions will take precedence.
Set your
Credential
to theAzureMonitorExporterOptions
.var credential = new DefaultAzureCredential(); Sdk.CreateTracerProviderBuilder() .AddAzureMonitorTraceExporter(o => { o.ConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000"; o.Credential = credential; }) .Build();
Provide your
Credential
to the AddAzureMonitorExporter method.var credential = new DefaultAzureCredential(); Sdk.CreateTracerProviderBuilder() .AddAzureMonitorTraceExporter(o => o.ConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000", credential) .Build();
Key concepts
Some key concepts for .NET include:
Overview of .NET distributed tracing: Distributed tracing is a diagnostic technique that helps engineers localize failures and performance issues within applications, especially those that may be distributed across multiple machines or processes.
Overview of Logging in .NET: .NET supports a logging API that works with a variety of built-in and third-party logging providers.
Some key concepts for Azure Monitor include:
- IP Addresses used by Azure Monitor: This exporter sends traces to the configured Azure Monitor Resource using HTTPS. You might need to know IP addresses if the app or infrastructure that you're monitoring is hosted behind a firewall.
Some key concepts for OpenTelemetry include:
OpenTelemetry: OpenTelemetry is a set of libraries used to collect and export telemetry data (metrics, logs, and traces) for analysis in order to understand your software's performance and behavior.
Instrumentation: The ability to call the OpenTelemetry API directly by any application is facilitated by instrumentation. A library that enables OpenTelemetry observability for another library is called an Instrumentation Library.
Tracing Signal: Trace refers to distributed tracing. It can be thought of as a directed acyclic graph (DAG) of Spans, where the edges between Spans are defined as parent/child relationship.
Sampling: Sampling is a mechanism to control the noise and overhead introduced by OpenTelemetry by reducing the number of samples of traces collected and sent to the backend.
Metric Signal: OpenTelemetry allows to record raw measurements or metrics with predefined aggregation and a set of attributes (dimensions).
Log Signal: A recording of an event. Typically the record includes a timestamp indicating when the event happened as well as other data that describes what happened, where it happened, etc.
For more information on the OpenTelemetry project, please review the OpenTelemetry Specifications.
Examples
Refer to Program.cs
for a complete demo.
Troubleshooting
The Azure Monitor exporter uses EventSource for its own internal logging. The exporter logs are available to any EventListener by opting into the source named "OpenTelemetry-AzureMonitor-Exporter".
OpenTelemetry also provides it's own self-diagnostics feature to collect internal logs. An example of this is available in our demo project here.
Next steps
For more information on Azure SDK, please refer to this website
Contributing
See CONTRIBUTING.md for details on contribution process.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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 was computed. 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 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 was computed. 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. |
-
.NETStandard 2.0
- Azure.Core (>= 1.37.0)
- OpenTelemetry (>= 1.7.0)
- OpenTelemetry.PersistentStorage.FileSystem (>= 1.0.0)
-
net6.0
- Azure.Core (>= 1.37.0)
- OpenTelemetry (>= 1.7.0)
- OpenTelemetry.PersistentStorage.FileSystem (>= 1.0.0)
NuGet packages (14)
Showing the top 5 NuGet packages that depend on Azure.Monitor.OpenTelemetry.Exporter:
Package | Downloads |
---|---|
Azure.Monitor.OpenTelemetry.AspNetCore
An OpenTelemetry .NET distro that exports to Azure Monitor |
|
Altinn.App.Api
This class library holds all the API controllers used by a standard Altinn 3 App. |
|
Genocs.Tracing
The tracing library to use Azure Service Bus. |
|
Aksio.Cratis.Kernel.Server
Package Description |
|
Reimaginate.Test.Framework
Package Description |
GitHub repositories (13)
Showing the top 5 popular GitHub repositories that depend on Azure.Monitor.OpenTelemetry.Exporter:
Repository | Stars |
---|---|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
Azure/azure-sdk-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
|
|
microsoft/dotnet-podcasts
.NET reference application shown at .NET Conf featuring ASP.NET Core, Blazor, .NET MAUI, Microservices, Orleans, Playwright, and more!
|
|
Squidex/squidex
Headless CMS and Content Managment Hub
|
|
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 8 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 18, React 18, Vue 3, BFF with YARP, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, Entity Framework Core, OpenTelemetry, SignalR, Hosted Services, Health Checks, Rate Limiting, Cloud Services (Azure, AWS, GCP).
|
Version | Downloads | Last updated |
---|---|---|
1.4.0-beta.2 | 10,778 | 10/11/2024 |
1.4.0-beta.1 | 53,309 | 7/16/2024 |
1.3.0 | 2,184,761 | 6/10/2024 |
1.3.0-beta.2 | 50,018 | 5/16/2024 |
1.3.0-beta.1 | 146,698 | 2/8/2024 |
1.2.0 | 2,000,059 | 1/24/2024 |
1.1.0 | 802,114 | 11/29/2023 |
1.0.0 | 1,049,059 | 9/20/2023 |
1.0.0-beta.14 | 189,511 | 8/9/2023 |
1.0.0-beta.13 | 239,513 | 7/14/2023 |
1.0.0-beta.12 | 152,235 | 6/6/2023 |
1.0.0-beta.11 | 445,254 | 5/10/2023 |
1.0.0-beta.10 | 105,143 | 4/11/2023 |
1.0.0-beta.9 | 203,802 | 3/14/2023 |
1.0.0-beta.8 | 48,996 | 3/7/2023 |
1.0.0-beta.7 | 102,072 | 2/6/2023 |
1.0.0-beta.6 | 116,625 | 1/9/2023 |
1.0.0-beta.5 | 92,504 | 11/3/2022 |
1.0.0-beta.4 | 398,804 | 10/6/2022 |
1.0.0-beta.3 | 1,160,114 | 10/5/2021 |
1.0.0-beta.2 | 122,278 | 3/5/2021 |