Skip to content

Commit

Permalink
try func signature
Browse files Browse the repository at this point in the history
  • Loading branch information
andracc committed Oct 10, 2024
1 parent ee382de commit e5b68fa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Backend/Otel/OtelKernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
using OpenTelemetry.Resources;
using OpenTelemetry.Trace;
using System.Linq;
using OpenTelemetry;
using System.Diagnostics;
// using BackendFramework.Otel;
namespace BackendFramework.Otel
{
Expand Down Expand Up @@ -136,6 +138,12 @@ public static void AddOpenTelemetryInstrumentation(this IServiceCollection servi
.AddOtlpExporter()
);
}
private class UserEnricher() : BaseProcessor<Activity>
{
public override void OnStart(Activity data)
{
}
}
}
}

0 comments on commit e5b68fa

Please sign in to comment.