From c035b1474f8d0df366fb1bb2e6c1cfe74e9e10bf Mon Sep 17 00:00:00 2001 From: NoriZC <110961157+NoriZC@users.noreply.github.com> Date: Sun, 22 Jun 2025 23:05:49 +1000 Subject: [PATCH] Switch App Insights to use new Prod Env --- shell/agents/Microsoft.Azure.Agent/Telemetry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/agents/Microsoft.Azure.Agent/Telemetry.cs b/shell/agents/Microsoft.Azure.Agent/Telemetry.cs index d454a260..d0b439d1 100644 --- a/shell/agents/Microsoft.Azure.Agent/Telemetry.cs +++ b/shell/agents/Microsoft.Azure.Agent/Telemetry.cs @@ -204,7 +204,7 @@ private Telemetry() .AddApplicationInsightsTelemetryWorkerService((ApplicationInsightsServiceOptions options) => { // Application insights in the AME environment. - options.ConnectionString = "InstrumentationKey=6378fd21-6e8d-4192-9714-0b776babff23"; + options.ConnectionString = "InstrumentationKey=7a75c4d0-ae0b-4a63-9fb3-b99271f79537"; options.EnableHeartbeat = false; options.EnableDiagnosticsTelemetryModule = false; });