We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3690dc commit 8d481feCopy full SHA for 8d481fe
src/server/src/index.ts
@@ -13,7 +13,9 @@ if (config.appInsightsConnectionString) {
13
appInsights
14
.setup(config.appInsightsConnectionString)
15
.setAutoCollectConsole(true, true)
16
- .enableWebInstrumentation(true)
+ .setAutoCollectExceptions(true)
17
+ .setAutoCollectRequests(true)
18
+ // .enableWebInstrumentation(true) // not being used on the client yet
19
.start();
20
}
21
0 commit comments