Skip to content

Commit b8143e0

Browse files
committed
Update endpoint urls
1 parent a7a2364 commit b8143e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/browser/telemetryReporter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const webAppInsightsClientFactory = async (key: string, replacementOptions?: Rep
1515
const web = await import("@microsoft/applicationinsights-web");
1616
let endpointUrl: undefined | string;
1717
if (key && key.indexOf("AIF-") === 0) {
18-
endpointUrl = "https://vortex.data.microsoft.com/collect/v1";
18+
endpointUrl = "https://vscode.vortex.data.microsoft.com/collect/v1";
1919
}
2020
appInsightsClient = new web.ApplicationInsights({
2121
config: {

src/node/telemetryReporter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const appInsightsClientFactory = async (key: string, replacementOptions?: Replac
5151
}
5252
//check if it's an Asimov key to change the endpoint
5353
if (key && key.indexOf("AIF-") === 0) {
54-
appInsightsClient.config.endpointUrl = "https://vortex.data.microsoft.com/collect/v1";
54+
appInsightsClient.config.endpointUrl = "https://mobile.events.data.microsoft.com/collect/v1";
5555
}
5656
} catch (e: any) {
5757
return Promise.reject("Failed to initialize app insights!\n" + e.message);

0 commit comments

Comments
 (0)