Sune Frederiksen
Sune Frederiksen
I would like this as well. This has the added benefit of allowing ASP .NET Core to deslerialize the `OktaWebApiOptions` directly from appsettings, rather than rely on (possibly misspelled) strings....
This is my fix until an official solution is released. ```csharp tracing.AddAspNetCoreInstrumentation(options => { options.EnrichWithHttpResponse = (activity, response) => { var endpoint = response.HttpContext.GetEndpoint(); if (endpoint is RouteEndpoint routeEndpoint) {...
@aminotran It goes in the `AddOpenTelemetry` service registration, so in `Program.cs` you would put it here: ```csharp using Microsoft.AspNetCore.Mvc.Controllers; using OpenTelemetry.Trace; var builder = WebApplication.CreateBuilder(args); builder.Services.AddOpenTelemetry().WithTracing(tracing => { tracing.AddAspNetCoreInstrumentation(options =>...
**config.txt** Here is an update regarding the new bookworm releases. You can still use and modify `boot/config.txt` during `chroot` for device tree overlays. The file will get moved into its...