Skip to content

Commit 8d481fe

Browse files
committed
feat: connect to appinsights
1 parent d3690dc commit 8d481fe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/server/src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ if (config.appInsightsConnectionString) {
1313
appInsights
1414
.setup(config.appInsightsConnectionString)
1515
.setAutoCollectConsole(true, true)
16-
.enableWebInstrumentation(true)
16+
.setAutoCollectExceptions(true)
17+
.setAutoCollectRequests(true)
18+
// .enableWebInstrumentation(true) // not being used on the client yet
1719
.start();
1820
}
1921

0 commit comments

Comments
 (0)