cezn

Results 1 comments of cezn

This workaround seems to work: ```csharp builder .Services.AddOpenTelemetry() .WithTracing(t => { // ... t.AddAspNetCoreInstrumentation(a => { a.EnrichWithHttpResponse = (activity, response) => { var request = response.HttpContext.Request; activity.DisplayName = $"{request.Method} {request.Path}";...