Update telemetry endpoints (#19841)

* Update telemetry endpoints

* Bump sql-assessment package
This commit is contained in:
Charles Gagnon
2022-06-28 09:16:29 -07:00
committed by GitHub
parent 42ad364eea
commit ebb1dcdfba
23 changed files with 503 additions and 863 deletions

View File

@@ -29,7 +29,7 @@ async function getClient(aiKey: string): Promise<appInsights.TelemetryClient> {
}
if (aiKey.indexOf('AIF-') === 0) {
client.config.endpointUrl = 'https://vortex.data.microsoft.com/collect/v1';
client.config.endpointUrl = 'https://mobile.events.data.microsoft.com/collect/v1';
}
return client;
}