This repository has been archived by the owner on Jun 10, 2020. It is now read-only.
Provide disable/enable flag in ApplicationInsightsServiceOptions for each TelemetryModule present in default list. #988
Labels
Milestone
This will make it easy to remove any default telemetry modules.
The current way to remove a module is:
var performanceCounterService = services.FirstOrDefault(t => t.ImplementationType == typeof(PerformanceCollectorModule));
if (performanceCounterService != null)
{
services.Remove(performanceCounterService);
}
Proposed way to remove, for example, DependencyCollection would be:
There are around 7 modules present by default, and hence there should be 7 new fields with all modules enabled by default.
The text was updated successfully, but these errors were encountered: