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.OpenTelemetryusing 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:
- Azure Monitor — enabled when
ConnectionStringis set (code, env varAPPLICATIONINSIGHTS_CONNECTION_STRING, orIConfiguration). - Agent365 — enabled when
TokenResolveris set (or when the DI token cache is registered byMicrosoft.Agents.A365.Observability.Hosting).
Set explicitly to override auto-detection: o.Exporters = ExportTarget.AzureMonitor | ExportTarget.Agent365;
- ASP.NET Core incoming HTTP requests
- HTTP client outbound calls (with Azure SDK dedup filter)
- SQL client queries
- Azure SDK client calls
- Resource detection (Azure App Service, VM, Container Apps)
- Agent365 scopes (
InvokeAgentScope,InferenceScope,ExecuteToolScope,OutputScope) and baggage propagation - Microsoft Agent Framework —
Experimental.Microsoft.Agents.AIactivity sources - Semantic Kernel —
Microsoft.SemanticKernel*activity sources - OpenAI / Azure OpenAI —
Azure.AI.OpenAI*,OpenAI.*,Experimental.Microsoft.Extensions.AI - Azure SDK EventSource →
ILoggerlog forwarding - Metrics —
Microsoft.AspNetCore.Hosting,System.Net.Http
Pick 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: Azure Monitor Getting Started
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: Agent Framework Getting Started
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: Agent365 Getting Started
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: Fabric Getting Started
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.Consolebuilder.Services.AddLogging(logging => logging.AddConsole());- Azure Monitor Getting Started — Send traces, metrics, and logs to Application Insights
- Multi-Endpoint Routing — Route telemetry to several Application Insights components from one application (preview)
- Agent Framework Getting Started — Instrument Agent Framework agents with Azure Monitor and OTLP
- Customization Guide — Resource configuration, enrichment, filtering, and OTLP exporter tuning
- Agent 365 Getting Started — Add Agent365 observability using the distro
- Agent 365 Migration Guide — Migrate from the standalone Agent365 SDK to the distro
- Agent 365 Migration Testing — Detailed migration checklist with auto-instrumentation, env vars, and span comparison
- Fabric Getting Started — Send telemetry to Microsoft Fabric / Azure Data Explorer via OTLP + OTel Collector
- Aspire Dashboard — Validate telemetry locally with the .NET Aspire Dashboard
- Azure.Monitor.OpenTelemetry.AspNetCore.Demo — ASP.NET Core → Azure Monitor
- Microsoft.OpenTelemetry.Agent365.Demo — Agent Framework app → Agent365
- Agent365 S2S Observability Sample
- Microsoft.OpenTelemetry.AgentFramework.Demo — Agent Framework → OTLP / Azure Monitor
- Microsoft.OpenTelemetry.Fabric.Demo — ASP.NET Core → OTLP → OTel Collector → Microsoft Fabric / Azure Data Explorer
- Microsoft.OpenTelemetry.MultiEndpoint.AspNetCore.Demo — ASP.NET Core → one Application Insights component per customer
- Microsoft.OpenTelemetry.MultiEndpoint.Console.Demo — Console app → two Application Insights components
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 checklist
GitHub Copilot:
cp -r skills/microsoft-opentelemetry-setup .github/skills/microsoft-opentelemetry-setup
cp -r skills/microsoft-opentelemetry-migration .github/skills/microsoft-opentelemetry-migrationCopilot 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-migrationCursor:
cp -r skills/microsoft-opentelemetry-setup .cursor/skills/microsoft-opentelemetry-setup
cp -r skills/microsoft-opentelemetry-migration .cursor/skills/microsoft-opentelemetry-migrationCodex:
cp -r skills/microsoft-opentelemetry-setup .agents/skills/microsoft-opentelemetry-setup
cp -r skills/microsoft-opentelemetry-migration .agents/skills/microsoft-opentelemetry-migrationOther 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:
- "Add observability to my agent"
- "Set up Microsoft.OpenTelemetry"
- "Migrate from A365 SDK to the distro"
- "Configure Agent 365 export"
The skill automatically detects your app type and provides the correct guidance.
dotnet build Microsoft.OpenTelemetry.slnx
dotnet test Microsoft.OpenTelemetry.slnxThis project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com 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 SECURITY.md.