We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0bcc1f commit 5549ef3Copy full SHA for 5549ef3
main/js/lib/insights.js
@@ -43,7 +43,19 @@ class Insights {
43
insights_key: insights_key
44
};
45
46
- applicationinsights.setup(insights_key).start();
+ applicationinsights.setup(insights_key)
47
+ .setAutoDependencyCorrelation(false)
48
+ .setAutoCollectRequests(true)
49
+ .setAutoCollectPerformance(true, false)
50
+ .setAutoCollectExceptions(true)
51
+ .setAutoCollectDependencies(false)
52
+ .setAutoCollectConsole(false)
53
+ .setUseDiskRetryCaching(false)
54
+ .setSendLiveMetrics(false)
55
+ .setDistributedTracingMode(appInsights.DistributedTracingModes.AI_AND_W3C)
56
+ .setInternalLogging(false, false)
57
+ .setAutoCollectHeartbeat(false)
58
+ .start();
59
60
return this;
61
}
0 commit comments