Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 49 additions & 34 deletions docs/core/diagnostics/observability-otlp-example.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Example: Use OpenTelemetry with OTLP and the standalone Aspire Dashboard"
description: An introduction to observing .NET apps with OTLP and the standalone Aspire Dashboard
ms.date: 6/14/2023
ms.date: 08/20/2026
ms.topic: how-to
ms.custom: sfi-image-nochange
---
Expand All @@ -22,46 +22,41 @@ Create a simple web API project by using the **ASP.NET Core Empty** template in
dotnet new web
```

## 2. Add metrics and activity definitions
## 2. Reference the OpenTelemetry packages

The following code defines a new metric (`greetings.count`) for the number of times the API has been called, and a new activity source (`Otel.Example`).
Use the NuGet Package Manager, or the following `dotnet add package` commands, to add the OpenTelemetry packages:

:::code language="csharp" source="snippets/OTLP-Example/csharp/Program.cs" id="Snippet_CustomMetrics":::

## 3. Create an API endpoint
``` dotnetcli
dotnet add package OpenTelemetry.Exporter.OpenTelemetryProtocol
dotnet add package OpenTelemetry.Extensions.Hosting
dotnet add package OpenTelemetry.Instrumentation.AspNetCore
dotnet add package OpenTelemetry.Instrumentation.Http
```

Insert the following code between `builder.Build();` and `app.Run()`
Alternatively, add the following `PackageReference` items directly to the project file:

:::code language="csharp" source="snippets/OTLP-Example/csharp/Program.cs" id="Snippet_MapGet":::
:::code language="xml" source="snippets/observability-otlp-example/csharp/observability-otlp-example.csproj" id="PackageReferences":::

Insert the following function at the bottom of the file:
> [!NOTE]
> Use the latest versions, as the OTel APIs are constantly evolving.

:::code language="csharp" source="snippets/OTLP-Example/csharp/Program.cs" id="Snippet_SendGreeting":::
## 3. Add using directives

> [!NOTE]
> The endpoint definition doesn't use anything specific to OpenTelemetry. It uses the .NET APIs for observability.
Add the following `using` directives to the top of the file:

## 4. Reference the OpenTelemetry packages
:::code language="csharp" source="snippets/observability-otlp-example/csharp/Program.cs" id="Usings":::

Use the NuGet Package Manager or command line to add the following NuGet packages:
## 4. Add metrics and activity definitions

``` xml
<ItemGroup>
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.9.0" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.9.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.9.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.9.0" />
</ItemGroup>
```
The following code defines a new metric (`greetings.count`) for the number of times the API has been called, and a new activity source (`Otel.Example`). Insert this code before `builder.Build`:

> [!NOTE]
> Use the latest versions, as the OTel APIs are constantly evolving.
:::code language="csharp" source="snippets/observability-otlp-example/csharp/Program.cs" id="CustomMetrics":::

## 5. Configure OpenTelemetry with the correct providers

Insert the following code before `builder.Build();`:
Insert the following code before `builder.Build`:

:::code language="csharp" source="snippets/OTLP-Example/csharp/Program.cs" id="Snippet_OTEL":::
:::code language="csharp" source="snippets/observability-otlp-example/csharp/Program.cs" id="OTEL":::

This code sets up OpenTelemetry with the different sources of telemetry:

Expand All @@ -85,7 +80,20 @@ You can add additional environment variables for the [.NET OTLP Exporter](https:
> [!NOTE]
> A common gotcha is to mix up _AppSettings.json_ and _AppSettings.Development.json_. If the latter is present, it will be used when you F5 from Visual Studio, and any settings in _AppSettings.json_ will be ignored.

## 7. Start the Aspire Dashboard container
## 7. Create an API endpoint

Insert the following code between `builder.Build` and `app.Run()`:

:::code language="csharp" source="snippets/observability-otlp-example/csharp/Program.cs" id="MapGet":::

Insert the following function at the bottom of the file:

:::code language="csharp" source="snippets/observability-otlp-example/csharp/Program.cs" id="SendGreeting":::

> [!NOTE]
> The endpoint definition doesn't use anything specific to OpenTelemetry. It uses the .NET APIs for observability.

## 8. Start the Aspire Dashboard container

Use `docker` to download and run the dashboard container.

Expand All @@ -103,17 +111,24 @@ Data displayed in the dashboard can be sensitive. By default, the dashboard is s

Copy the URL shown, and replace `0.0.0.0` with `localhost`, for example, `http://localhost:18888/login?t=123456780abcdef123456780`, and open that in your browser. Or you can also paste the key after `/login?t=` when the login dialog is shown. The token changes each time you start the container.

## 8. Run the project
## 9. Run the project

Run the project with `dotnet run`. The console output displays the URLs that the app is listening on, for example:

``` output
info: Microsoft.Hosting.Lifetime[14]
Now listening on: http://localhost:5086
```

Run the project and then access the API with the browser or curl.
Use the port shown in your own console output, as it can differ from the examples in this article. Access the API with the browser or curl, using that port:

``` dotnetcli
curl -k http://localhost:7275
curl -k http://localhost:5086
```

Each time you request the page, it increments the count for the number of greetings that have been made.

### 8.1 Log output
### 9.1 Log output

The logging statements from the code are output using `ILogger`. By default, the [Console Provider](../extensions/logging/overview.md?tabs=command-line#configure-logging) is enabled so that output is directed to the console.

Expand All @@ -127,7 +142,7 @@ The logs are shown in the dashboard as structured logs - any properties you set

[![Logs in standalone dashboard](./media/aspire-dashboard-logs-thumb.png)](./media/aspire-dashboard-logs.png#lightbox)

### 8.2 Viewing the metrics
### 9.2 Viewing the metrics

The Aspire dashboard shows metrics on a per resource basis (a resource being the OTel way of talking about sources of telemetry such as a process). When a resource is selected, the dashboard enumerates each metric that has been sent to its OTLP endpoint by the resource. The list of metrics is dynamic, and is updated as new metrics are received.

Expand All @@ -139,7 +154,7 @@ The view for the metrics depends on the type of metric that's being used:
- Histograms that track a value per request, such as a timespan or bytes sent per request, are collected into a series of buckets. The dashboard graphs the P50, P90, and P99 percentiles. Histogram results can include exemplars, which are individual datapoints together with the trace/spanId for that request. These are shown as dots on the graph. Selecting one navigates to the respective trace so you can see what happened to cause that value. This is useful for diagnosing outliers.
- Metrics can include dimensions, which are key/value pairs associated with individual values. The values are aggregated per dimension. Using the dropdowns in the view, you can filter the results to look at specific dimensions, such as only `GET` requests, or those for a specific URL route in ASP.NET.

### 8.3 Viewing the tracing
### 9.3 Viewing the tracing

The tracing view shows a list of traces. Each trace is a set of activities that share the same traceId. Work is tracked with spans, which represent a unit of work. Processing an ASP.NET request creates a span. Making an HttpClient request is a span. By tracking the span's parent, a hierarchy of spans can be visualized. By collecting spans from each resource (process), you can track the work that happens across a series of services. HTTP requests have a header that's used to pass the traceId and parent spanId to the next service. Each resource needs to collect telemetry and send it to the same collector. It will then aggregate and present a hierarchy of the spans.

Expand All @@ -149,4 +164,4 @@ The dashboard shows a list of traces with summary information. Whenever spans wi

[![Spans in standalone dashboard](./media/aspire-dashboard-spans-thumb.png)](./media/aspire-dashboard-spans.png#lightbox)

Selecting a span shows its details including any properties on the span, such as the `greeting` tag that you set in [step 3](#3-create-an-api-endpoint).
Selecting a span shows its details including any properties on the span, such as the `greeting` tag that you set in [step 7](#7-create-an-api-endpoint).
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
// <Usings>
using System.Diagnostics;
using System.Diagnostics.Metrics;
using OpenTelemetry.Exporter;
using OpenTelemetry.Logs;
using OpenTelemetry.Metrics;
using OpenTelemetry.Resources;
using OpenTelemetry.Trace;
// </Usings>

// <CustomMetrics>
// Custom metrics for the application
var greeterMeter = new Meter("OTel.Example", "1.0.0");
var countGreetings = greeterMeter.CreateCounter<int>("greetings.count", description: "Counts the number of greetings");

// Custom ActivitySource for the application
var greeterActivitySource = new ActivitySource("OTel.Example");
// </CustomMetrics>

var builder = WebApplication.CreateBuilder(args);

// <OTEL>
// Configure the shared OTLP connection used by logs, metrics, and traces.
var otlpEndpoint = new Uri(builder.Configuration["OTEL_EXPORTER_OTLP_ENDPOINT"]!);
Action<OtlpExporterOptions> configureOtlp = options =>
{
options.Endpoint = otlpEndpoint;
options.Protocol = OtlpExportProtocol.Grpc;
options.Headers = builder.Configuration["OTEL_EXPORTER_OTLP_HEADERS"]; // To secure endpoint (not in this example)
};

// Setup logging to be exported via OpenTelemetry
builder.Logging.AddOpenTelemetry(logging =>
{
logging.IncludeFormattedMessage = true;
logging.IncludeScopes = true;
logging.AddOtlpExporter(configureOtlp);
});

var otel = builder.Services.AddOpenTelemetry();

// Identify this application as a single service in the Aspire dashboard.
otel.ConfigureResource(resource => resource.AddService(builder.Configuration["OTEL_SERVICE_NAME"]!));

// Add Metrics for ASP.NET Core and our custom metrics and export via OTLP
otel.WithMetrics(metrics =>
{
// Metrics provider from OpenTelemetry
metrics.AddAspNetCoreInstrumentation();

// Our custom metrics
metrics.AddMeter(greeterMeter.Name);

// Metrics provided by ASP.NET Core in .NET
metrics.AddMeter("Microsoft.AspNetCore.Hosting");
metrics.AddMeter("Microsoft.AspNetCore.Server.Kestrel");

// Export the metrics via OTLP
metrics.AddOtlpExporter(configureOtlp);
});

// Add Tracing for ASP.NET Core and our custom ActivitySource and export via OTLP
otel.WithTracing(tracing =>
{
tracing.AddAspNetCoreInstrumentation();
tracing.AddHttpClientInstrumentation();
tracing.AddSource(greeterActivitySource.Name);
tracing.AddOtlpExporter(configureOtlp);
});
// </OTEL>

var app = builder.Build();

// <MapGet>
app.MapGet("/", SendGreeting);
// </MapGet>

app.Run();

// <SendGreeting>
async Task<string> SendGreeting(ILogger<Program> logger)
{
// Create a new Activity scoped to the method
using var activity = greeterActivitySource.StartActivity("GreeterActivity");

// Log a message
logger.LogInformation("Sending greeting");

// Increment the custom counter
countGreetings.Add(1);

// Add a tag to the Activity
activity?.SetTag("greeting", "Hello World!");

return "Hello World!";
}
// </SendGreeting>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:5245",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:7147;http://localhost:5245",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"OTEL_EXPORTER_OTLP_ENDPOINT": "http://localhost:4317",
"OTEL_SERVICE_NAME": "OTLP-Example"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<!-- <PackageReferences> -->
<ItemGroup>
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.17.0" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.17.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.17.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.17.0" />
</ItemGroup>
<!-- </PackageReferences> -->

</Project>
Loading