diff --git a/Backend/Otel/OtelKernel.cs b/Backend/Otel/OtelKernel.cs index c2a06637eb..b356134e67 100644 --- a/Backend/Otel/OtelKernel.cs +++ b/Backend/Otel/OtelKernel.cs @@ -170,7 +170,6 @@ public static void AddOpenTelemetryInstrumentation(this IServiceCollection servi internal class LocationEnricher(ILocationProvider locationProvider) : BaseProcessor { - // to complete at end of activities public override async void OnEnd(Activity data) { string? uriPath = (string?)data.GetTagItem("url.full"); @@ -189,8 +188,6 @@ public override async void OnEnd(Activity data) data?.AddTag("country", location.Country); data?.AddTag("regionName", location.Region); data?.AddTag("city", location.City); - - // data?.SetTag("SESSIONID BAGGAGE", data?.GetBaggageItem("sessionId")); } data?.SetTag("SESSIONID BAGGAGE", data?.GetBaggageItem("sessionId")); if (uriPath != null && uriPath.Contains(locationUri))