PlanTempusApp/Core/Telemetry/Enrichers/EnrichWithMetaTelemetry.cs
2025-03-07 16:17:30 +01:00

14 lines
No EOL
390 B
C#

using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.Extensibility;
namespace PlanTempus.Core.Telemetry.Enrichers
{
public class EnrichWithMetaTelemetry(ITelemetryProcessor next) : ITelemetryProcessor
{
public void Process(ITelemetry item)
{
//nothing going on here yet :)
next.Process(item);
}
}
}