2025-02-20 00:23:13 +01:00
|
|
|
|
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
|
2025-02-20 00:23:13 +01:00
|
|
|
|
{
|
|
|
|
|
|
public void Process(ITelemetry item)
|
|
|
|
|
|
{
|
|
|
|
|
|
//nothing going on here yet :)
|
2025-03-07 16:17:30 +01:00
|
|
|
|
next.Process(item);
|
2025-02-20 00:23:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-03-07 16:17:30 +01:00
|
|
|
|
}
|