PlanTempusApp/PlanTempus.Core/Telemetry/Enrichers/EnrichWithMetaTelemetry.cs

14 lines
390 B
C#
Raw Permalink Normal View History

using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.Extensibility;
namespace PlanTempus.Core.Telemetry.Enrichers
{
2025-03-07 16:17:30 +01:00
public class EnrichWithMetaTelemetry(ITelemetryProcessor next) : ITelemetryProcessor
{
public void Process(ITelemetry item)
{
//nothing going on here yet :)
2025-03-07 16:17:30 +01:00
next.Process(item);
}
}
2025-03-07 16:17:30 +01:00
}