Skip to content

Latest commit

 

History

224 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Microsoft.OpenTelemetry

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

Install

dotnet add package Microsoft.OpenTelemetry

Quick Start

ASP.NET Core / Worker Services (hosted)

using Microsoft.OpenTelemetry;

var builder = WebApplication.CreateBuilder(args);

builder.UseMicrosoftOpenTelemetry(o =>
{
    o.Exporters = ExportTarget.AzureMonitor;
});

var app = builder.Build();
app.Run();

Console / non-hosted apps

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 any IOpenTelemetryBuilder — both the host-integrated and OpenTelemetrySdk.Create() paths are supported.

Signals & destinations

Signal Azure Monitor Agent365 OTLP Console
Traces
Metrics
Logs

Exporters auto-detect when Exporters isn't set:

  • Azure Monitor — enabled when ConnectionString is set (code, env var APPLICATIONINSIGHTS_CONNECTION_STRING, or IConfiguration).
  • Agent365 — enabled when 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;

Instrumentation (always active)

  • 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.AI activity sources
  • Semantic Kernel — Microsoft.SemanticKernel* activity sources
  • OpenAI / Azure OpenAI — Azure.AI.OpenAI*, OpenAI.*, Experimental.Microsoft.Extensions.AI
  • Azure SDK EventSource → ILogger log forwarding
  • Metrics — Microsoft.AspNetCore.Hosting, System.Net.Http

Onboarding by scenario

Pick the section that matches your workload. All can be combined in the same app.


1. Azure Monitor

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


2. Microsoft Agent Framework

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


3. Agent365

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


4. Microsoft Fabric / Azure Data Explorer

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


Combining destinations

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);
    };
});

Options reference

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;
});

Token resolver: auto vs custom

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 TokenResolver is set explicitly, the auto DI token cache is not registered — your resolver wins.

Verify it works

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

Internal logging

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());

Documentation

Examples

AI-Assisted Setup & Migration Skills

The skills/ folder contains portable skills that help AI coding agents set up or migrate to the Microsoft OpenTelemetry distro.

What They Do

  • microsoft-opentelemetry-setup: Guides new setup for ASP.NET Core, Console, and Agent Framework apps — covers exporters, token resolver, baggage, and instrumentation options
  • microsoft-opentelemetry-migration: Walks through A365 Observability SDK → distro migration with code change detection, package swap, and validation checklist

Installation by Agent

GitHub 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.

Usage

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.

Build & test

dotnet build Microsoft.OpenTelemetry.slnx
dotnet test Microsoft.OpenTelemetry.slnx

Microsoft Open Source Code of Conduct

This 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.

Data Collection

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

Internal telemetry can be disabled by setting the environment variable APPLICATIONINSIGHTS_STATSBEAT_DISABLED to true.

Trademarks

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.

Reporting Security Issues

See SECURITY.md.

About

No description, website, or topics provided.

Resources

Code of conduct

Contributing

Security policy

Stars

4 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages