![]() |
VOOZH | about |
dotnet add package Microsoft.OpenTelemetry --version 1.0.5
NuGet\Install-Package Microsoft.OpenTelemetry -Version 1.0.5
<PackageReference Include="Microsoft.OpenTelemetry" Version="1.0.5" />
<PackageVersion Include="Microsoft.OpenTelemetry" Version="1.0.5" />Directory.Packages.props
<PackageReference Include="Microsoft.OpenTelemetry" />Project file
paket add Microsoft.OpenTelemetry --version 1.0.5
#r "nuget: Microsoft.OpenTelemetry, 1.0.5"
#:package Microsoft.OpenTelemetry@1.0.5
#addin nuget:?package=Microsoft.OpenTelemetry&version=1.0.5Install as a Cake Addin
#tool nuget:?package=Microsoft.OpenTelemetry&version=1.0.5Install as a Cake Tool
A unified OpenTelemetry distribution for .NET. One-line onboarding for ASP.NET Core apps, Microsoft Agent Framework, and Agent365 — Microsoft's managed observability backend for AI agents.
Targets: net8.0, netstandard2.0
dotnet add package Microsoft.OpenTelemetry
using Microsoft.OpenTelemetry;
var builder = WebApplication.CreateBuilder(args);
builder.UseMicrosoftOpenTelemetry(o =>
{
o.Exporters = ExportTarget.AzureMonitor;
});
var app = builder.Build();
app.Run();
using Microsoft.OpenTelemetry;
using OpenTelemetry;
var sdk = OpenTelemetrySdk.Create(otel =>
{
otel.UseMicrosoftOpenTelemetry(o =>
{
o.Exporters = ExportTarget.AzureMonitor;
});
});
// Your application logic here.
// The SDK must stay alive for the lifetime of the app.
// Disposing the SDK flushes pending telemetry and shuts down all providers.
sdk.Dispose();
Important: Do not dispose the SDK until your application is shutting down. Disposing it early stops all telemetry collection and export — you will lose data.
UseMicrosoftOpenTelemetry()works on anyIOpenTelemetryBuilder— both the host-integrated andOpenTelemetrySdk.Create()paths are supported.
| Signal | Azure Monitor | Agent365 | OTLP | Console |
|---|---|---|---|---|
| Traces | ✅ | ✅ | ✅ | ✅ |
| Metrics | ✅ | — | ✅ | ✅ |
| Logs | ✅ | — | ✅ | ✅ |
Exporters auto-detect when Exporters isn't set:
ConnectionString is set (code, env var APPLICATIONINSIGHTS_CONNECTION_STRING, or IConfiguration).TokenResolver is set (or when the DI token cache is registered by Microsoft.Agents.A365.Observability.Hosting).Set explicitly to override auto-detection: o.Exporters = ExportTarget.AzureMonitor | ExportTarget.Agent365;
InvokeAgentScope, InferenceScope, ExecuteToolScope, OutputScope) and baggage propagationExperimental.Microsoft.Agents.AI activity sourcesMicrosoft.SemanticKernel* activity sourcesAzure.AI.OpenAI*, OpenAI.*, Experimental.Microsoft.Extensions.AIILogger log forwardingMicrosoft.AspNetCore.Hosting, System.Net.HttpPick the section that matches your workload. All can be combined in the same app.
Send traces, metrics, and logs to Application Insights / Azure Monitor.
builder.UseMicrosoftOpenTelemetry(o =>
{
o.Exporters = ExportTarget.AzureMonitor;
o.AzureMonitor.ConnectionString = "InstrumentationKey=...";
});
Configuration sources — the connection string can be set via code, appsettings.json, or the APPLICATIONINSIGHTS_CONNECTION_STRING environment variable.
📖 Full guide:
Capture activity from Agent Framework agents and export to Azure Monitor, OTLP, or both.
builder.UseMicrosoftOpenTelemetry(o =>
{
o.Exporters = ExportTarget.AzureMonitor | ExportTarget.Otlp;
});
Agent Framework activity sources are captured automatically — no extra configuration needed.
📖 Full guide:
Send agent telemetry (invoke agent, inference, tool execution, output) to the Agent365 observability backend.
builder.UseMicrosoftOpenTelemetry(o =>
{
o.Exporters = ExportTarget.Agent365;
o.Agent365.TokenResolver = async (agentId, tenantId) =>
{
return await MyTokenService.GetTokenAsync(agentId, tenantId);
};
});
📖 Full guide:
Send traces, metrics, and logs to Microsoft Fabric Real-Time Intelligence or Azure Data Explorer via an OpenTelemetry Collector with the Azure Data Explorer exporter.
builder.UseMicrosoftOpenTelemetry(o =>
{
o.Exporters = ExportTarget.Otlp;
});
The app sends OTLP to a collector, which forwards to Fabric/ADX. No code changes needed — just configure the collector.
📖 Full guide:
builder.UseMicrosoftOpenTelemetry(o =>
{
o.Exporters = ExportTarget.AzureMonitor | ExportTarget.Agent365 | ExportTarget.Otlp;
o.AzureMonitor.ConnectionString = "InstrumentationKey=...";
o.Agent365.TokenResolver = async (agentId, tenantId) =>
{
return await MyTokenService.GetTokenAsync(agentId, tenantId);
};
});
Full surface of MicrosoftOpenTelemetryOptions. Everything is opt-in; values shown are defaults.
builder.UseMicrosoftOpenTelemetry(o =>
{
// --- Export targets (pick one or combine with |) ---
o.Exporters = ExportTarget.Console // Console output (dev)
| ExportTarget.Agent365 // Agent365 observability platform
| ExportTarget.AzureMonitor // Application Insights
| ExportTarget.Otlp; // OTLP (Aspire, Jaeger, Grafana)
// --- Azure Monitor settings ---
o.AzureMonitor.ConnectionString = "InstrumentationKey=...";
o.AzureMonitor.Credential = new DefaultAzureCredential(); // Optional AAD auth
o.AzureMonitor.SamplingRatio = 1.0f;
o.AzureMonitor.TracesPerSecond = 5.0; // Rate-limited sampling (default)
o.AzureMonitor.EnableLiveMetrics = true;
o.AzureMonitor.EnableStandardMetrics = true;
o.AzureMonitor.EnablePerfCounters = true;
o.AzureMonitor.EnableTraceBasedLogsSampler = true;
o.AzureMonitor.DisableOfflineStorage = false;
o.AzureMonitor.StorageDirectory = null;
// --- Agent365 exporter settings ---
// Option A: Auto-managed tokens via DI (recommended for Agent Framework apps).
// The Microsoft.Agents.A365.Observability.Hosting package registers
// IExporterTokenCache<AgenticTokenStruct>. No TokenResolver needed.
// Option B: Custom token resolver (non-agent apps, S2S, custom auth)
o.Agent365.TokenResolver = async (agentId, tenantId) =>
{
return await MyTokenService.GetTokenAsync(agentId, tenantId);
};
// Optional: custom domain resolver (default: agent365.svc.cloud.microsoft)
o.Agent365.DomainResolver = tenantId => "agent365.svc.cloud.microsoft";
// Optional: use S2S endpoint path
o.Agent365.UseS2SEndpoint = false;
// Optional: batch export tuning
o.Agent365.MaxQueueSize = 2048;
o.Agent365.MaxExportBatchSize = 512;
o.Agent365.ScheduledDelayMilliseconds = 5000;
o.Agent365.ExporterTimeoutMilliseconds = 30000;
// --- Instrumentation options (all default to true) ---
o.Instrumentation.EnableTracing = true;
o.Instrumentation.EnableMetrics = true;
o.Instrumentation.EnableLogging = true;
o.Instrumentation.EnableAspNetCoreInstrumentation = true;
o.Instrumentation.EnableHttpClientInstrumentation = true;
o.Instrumentation.EnableSqlClientInstrumentation = true;
o.Instrumentation.EnableAzureSdkInstrumentation = true;
o.Instrumentation.EnableOpenAIInstrumentation = true;
o.Instrumentation.EnableSemanticKernelInstrumentation = true;
o.Instrumentation.EnableAgentFrameworkInstrumentation = true;
o.Instrumentation.EnableAgent365Instrumentation = true;
});
| Approach | When to use | How it works |
|---|---|---|
| Auto (DI) — default | Agent Framework apps that reference Microsoft.Agents.A365.Observability.Hosting |
IExporterTokenCache<AgenticTokenStruct> is registered automatically. Per-request token exchange happens via ExchangeTurnTokenAsync. |
| Custom resolver | Non-agent apps, service-to-service, or custom auth | Set o.Agent365.TokenResolver directly. You own token acquisition. |
If
TokenResolveris set explicitly, the auto DI token cache is not registered — your resolver wins.
Send a request through your agent (e.g., a Teams message). In the console output you should see activity spans from the instrumented sources:
Activity.DisplayName: chat gpt-*
Activity.DisplayName: invoke_agent *
Activity.DisplayName: MessageProcessor
And a successful Agent365 export:
Received HTTP response headers after *ms - 200
The distro's internal components (exporters, span processors) use ILoggerFactory from DI when available.
In ASP.NET Core and hosted apps, this means internal diagnostics flow through the app's configured logging pipeline automatically.
Non-DI / console apps: If your app does not register ILoggerFactory in DI, internal diagnostics are silently discarded (NullLoggerFactory). To see internal log output, add Microsoft.Extensions.Logging.Console and wire it up:
dotnet add package Microsoft.Extensions.Logging.Console
builder.Services.AddLogging(logging => logging.AddConsole());
The skills/ folder contains portable skills that help AI coding agents set up or migrate to the Microsoft OpenTelemetry distro.
microsoft-opentelemetry-setup: Guides new setup for ASP.NET Core, Console, and Agent Framework apps — covers exporters, token resolver, baggage, and instrumentation optionsmicrosoft-opentelemetry-migration: Walks through A365 Observability SDK → distro migration with code change detection, package swap, and validation checklistGitHub Copilot:
cp -r skills/microsoft-opentelemetry-setup .github/skills/microsoft-opentelemetry-setup
cp -r skills/microsoft-opentelemetry-migration .github/skills/microsoft-opentelemetry-migration
Copilot discovers skills in .github/skills/ automatically. Works with Copilot coding agent and agent mode in VS Code.
Claude Code:
cp -r skills/microsoft-opentelemetry-setup .claude/skills/microsoft-opentelemetry-setup
cp -r skills/microsoft-opentelemetry-migration .claude/skills/microsoft-opentelemetry-migration
Cursor:
cp -r skills/microsoft-opentelemetry-setup .cursor/skills/microsoft-opentelemetry-setup
cp -r skills/microsoft-opentelemetry-migration .cursor/skills/microsoft-opentelemetry-migration
Codex:
cp -r skills/microsoft-opentelemetry-setup .agents/skills/microsoft-opentelemetry-setup
cp -r skills/microsoft-opentelemetry-migration .agents/skills/microsoft-opentelemetry-migration
Other agents:
Copy the skills/ folders into your project's agent skills directory. If your agent doesn't support the Agent Skills standard, copy the references/ markdown files into whatever instruction mechanism your agent uses.
Once installed, ask your AI coding agent:
The skill automatically detects your app type and provides the correct guidance.
dotnet build Microsoft.OpenTelemetry.slnx
dotnet test Microsoft.OpenTelemetry.slnx
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact with any additional questions or comments.
As this SDK is designed to enable applications to perform data collection which is sent to the Microsoft collection endpoints the following is required to identify our privacy statement.
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
Internal telemetry can be disabled by setting the environment variable APPLICATIONINSIGHTS_STATSBEAT_DISABLED to true.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.
See .
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 1 NuGet packages that depend on Microsoft.OpenTelemetry:
| Package | Downloads |
|---|---|
|
Azure.AI.AgentServer.Core
Shared foundation for Azure AI Agent Server packages — provides port binding, health probes, OpenTelemetry, graceful shutdown, and the composable AgentHostBuilder. |
Showing the top 1 popular GitHub repositories that depend on Microsoft.OpenTelemetry:
| Repository | Stars |
|---|---|
|
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.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.5 | 122 | 6/12/2026 |
| 1.0.4 | 268 | 6/1/2026 |
| 1.0.3 | 478 | 5/22/2026 |
| 1.0.2 | 484 | 5/6/2026 |
| 1.0.1 | 676 | 5/1/2026 |
| 1.0.0-beta.2 | 56 | 4/30/2026 |
| 1.0.0-beta.1 | 14,433 | 4/27/2026 |
| 1.0.0-alpha.3 | 277 | 4/23/2026 |
| 1.0.0-alpha.2 | 78 | 4/21/2026 |
| 1.0.0-alpha.1 | 56 | 4/20/2026 |
See CHANGELOG.md for release notes.