From da61a74c71803940a42cf5240773acf7bf5c8767 Mon Sep 17 00:00:00 2001 From: Nori Zhang Date: Fri, 8 Nov 2024 16:47:16 +0800 Subject: [PATCH] Switch to app insights in AME (prod) Environment. --- shell/agents/Microsoft.Azure.Agent/Telemetry.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/agents/Microsoft.Azure.Agent/Telemetry.cs b/shell/agents/Microsoft.Azure.Agent/Telemetry.cs index d68111c2..d454a260 100644 --- a/shell/agents/Microsoft.Azure.Agent/Telemetry.cs +++ b/shell/agents/Microsoft.Azure.Agent/Telemetry.cs @@ -203,8 +203,8 @@ private Telemetry() IServiceCollection services = new ServiceCollection() .AddApplicationInsightsTelemetryWorkerService((ApplicationInsightsServiceOptions options) => { - // Application insights in the test environment. - options.ConnectionString = "InstrumentationKey=eea660a1-d969-44f8-abe4-96666e7fb159"; + // Application insights in the AME environment. + options.ConnectionString = "InstrumentationKey=6378fd21-6e8d-4192-9714-0b776babff23"; options.EnableHeartbeat = false; options.EnableDiagnosticsTelemetryModule = false; });