Skip to content

Commit a5a9dbd

Browse files
authored
Update telemetry connection strings (#692)
## Changes This PR updates the connection string for Application Insights for the telemetry collection of the extension. ## Tests - [x] When using the Run Extension launch configuration without change, telemetry is uploaded to our development Application Insights instance. - [x] Manually removed the `EXTENSION_DEVELOPMENT` environment variable from the Run Extension launch configuration and verified that the new telemetry was uploaded to our production Application Insights instance.
1 parent 178d69a commit a5a9dbd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/databricks-vscode/src/telemetry/constants.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import {AuthType} from "../configuration/auth/AuthProvider";
22

33
/** The production application insights configuration string for Databricks. */
4-
export const PROD_APP_INSIGHTS_CONFIGURATION_STRING = "";
4+
export const PROD_APP_INSIGHTS_CONFIGURATION_STRING =
5+
"InstrumentationKey=ebe191c5-f06b-4189-b68c-34fb5fbdb3f0;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/";
56
/** The application insights configuration string used while developing on the VS Code extension */
67
export const DEV_APP_INSIGHTS_CONFIGURATION_STRING =
7-
"InstrumentationKey=ae4b0735-b53b-409a-97d2-d77b6ec584a2;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/";
8+
"InstrumentationKey=257d1561-5005-4a76-a3a8-7955df129e86;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/";
89

910
/** The list of all events which can be monitored. */
1011
/* eslint-disable @typescript-eslint/naming-convention */

0 commit comments

Comments
 (0)