I have an AppInsights that works perfectly, but this morning I see a 408 response code in the Failures section. My problem is that I'm not able to see the details or why this is happening.
If I click on the 500 response code, I can see the 2 calls to the endpoint.

I also tried to find the 408 in the transaction search section but there is no existing transaction with a 408 request response code. Someone already experimented this behavior ?
EDIT:
Here the way my AppInsight is configured in my program.cs
builder.Services.AddApplicationInsightsTelemetry(builder.Configuration);
builder.Services.AddApplicationInsightsTelemetryProcessor<HealthCheckTelemetryFilter>();
builder.Services.AddApplicationInsightsTelemetryProcessor<StatusTelemetryFilter>();
HealthCheckTelemetryFilterandStatusTelemetryFilterare just a filter to not log traces, dependencies or request to the/statusand/api/healthendpoints
And the appsettings.json contains the connection string
"ApplicationInsights": {
"ConnectionString": "my-connection-string"
},
