
Gestern hat Microsoft die erste stabile Version 1.0 von OpenTelemetry .NET veröffentlicht.
Was ist OpenTelemtry?
OpenTelemetry ist eine Initiative der CNFN (Cloud Native Computing Foundation) und dient dazu, dass Anbieter- und Technologie-übergreifend Informationen von Applikationen zur Verfügung gestellt und ausgewertet werden können.
OpenTelemetry bietet einen Open-Source-Standard und einen Satz von Technologien, mit denen Messwerte, Traces und Logs (in Zukunft) aus Ihren cloudnativen Anwendungen und Ihrer Infrastruktur erfasst und exportiert werden.
Ursprünglich stammt die Idee aus der Fusion der OpenTracing und OpenCensus-Projekten.
Im Bereich der Applikationstelemtrie sind die führenden Produkte Azure’s Application Insights , AWS’s Cloudwatch sowie New Relic , die allesamt entsprechende SDKs und Provider für und mit OpenTelemtry anbieten.
OpenTelemtry 1.0
Bereits im Februar wurde die Spezifikation für OpenTelemetry 1.0 veröffentlicht und nun mit dem Release auch für .NET verfügbar gemacht.
Neu sind nun entsprechende Exporter, zB. für eine Konsolen- oder ASP.NET basierte Anwendung.
1public class Startup
2{
3 public Startup(IConfiguration configuration) => Configuration = configuration;
4
5 public IConfiguration Configuration { get; }
6
7 public void ConfigureServices(IServiceCollection services)
8 {
9 services.AddOpenTelemetryTracing((builder) => builder
10 .AddAspNetCoreInstrumentation()
11 .AddHttpClientInstrumentation()
12 .AddZipkinExporter(zipkinOptions =>
13 {
14 zipkinOptions.Endpoint = new Uri(Configuration.GetConnectionString("zipkin"));
15 }));
16 }
17}
Entsprechende Beispiele für die schreibende- sowie die lesende Verwendung finden sich immer aktuell im .NET Repo für OpenTelemtry: open-telemetry/opentelemetry-dotnet
Related articles

Mar 17, 2026 · 15 min read
GitHub Copilot - Custom Agents for Full-Stack Teams: A Practical Operating Model for .NET, React and Azure
GitHub Copilot custom agents allow teams to define specialized AI assistants, each with its own role, tool access and behavioral boundaries. …

Mar 10, 2026 · 15 min read
.NET NuGet Trusted Publishing with GitHub Actions
Publishing NuGet packages has traditionally required one uncomfortable compromise: a long-lived API key had to exist somewhere in the …

Mar 09, 2026 · 7 min read
C# 15 Unions: Unions are finally in .NET
After many years of workarounds, design discussions and library-level substitutes, unions are finally becoming a first-class part of C#. The …
Let's Work Together
Looking for an experienced Platform Architect or Engineer for your next project? Whether it's cloud migration, platform modernization or building new solutions from scratch - I'm here to help you succeed.

Comments