refactor(dir): disable runtime instrumentation

This commit is contained in:
Collin Barrett 2025-08-12 20:22:42 -05:00 committed by Collin Barrett
parent 1a972083f1
commit ed26ccce17

View file

@ -56,8 +56,8 @@ public static TBuilder ConfigureOpenTelemetry<TBuilder>(this TBuilder builder)
.WithMetrics(metrics =>
{
metrics.AddAspNetCoreInstrumentation()
.AddHttpClientInstrumentation()
.AddRuntimeInstrumentation();
.AddHttpClientInstrumentation();
//.AddRuntimeInstrumentation(); // increases App Insights bill
})
.WithTracing(tracing =>
{