Skip to content

Instantly share code, notes, and snippets.

@hd9
Last active February 19, 2020 15:49
Show Gist options
  • Save hd9/62147a7e075614acf082ef8b0407d180 to your computer and use it in GitHub Desktop.
Save hd9/62147a7e075614acf082ef8b0407d180 to your computer and use it in GitHub Desktop.
Suppressing Application Insights telemetry on an ASP.NET web applications
// **********************************************
// Fore more information, visit:
// https://blog.hildenco.com/2020/02/suppressing-application-insights.html
// **********************************************
// add this on your Global.asax
var builder = TelemetryConfiguration.Active.DefaultTelemetrySink.TelemetryProcessorChainBuilder;
builder.Use((next) => new SuppressFaviconFilter(next));
builder.Build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment