23 lines
532 B
C#
23 lines
532 B
C#
|
|
using Microsoft.ApplicationInsights.Channel;
|
|||
|
|
using Microsoft.ApplicationInsights.Extensibility;
|
|||
|
|
|
|||
|
|
namespace PlanTempus.Core.Telemetry.Enrichers
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public class EnrichWithMetaTelemetry : ITelemetryProcessor
|
|||
|
|
{
|
|||
|
|
private readonly ITelemetryProcessor _next;
|
|||
|
|
|
|||
|
|
public EnrichWithMetaTelemetry(ITelemetryProcessor next)
|
|||
|
|
{
|
|||
|
|
_next = next;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void Process(ITelemetry item)
|
|||
|
|
{
|
|||
|
|
//nothing going on here yet :)
|
|||
|
|
_next.Process(item);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|