You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sends logs, metrics and traces to opentelemetry collector
enrichment/augmentation of logs and traces even when exceptions occurr
inject trace id to http requests
health checks
best practices from aspire
servicediscovery
http resilience handler
Initialization in ASP.NET Core
builder.AddObservability();builder.Services.Configure<ObservabilityOptions>(options =>{options.TraceIdHeader="x-trace-id";options.Augment=(context,tags)=>{tags.Add("TenantId","extrakt from http context");returnValueTask.CompletedTask;};});