From ec11362a947f047df820bbb8d8453b9f7b3492f2 Mon Sep 17 00:00:00 2001 From: Adwait Hegde Date: Wed, 29 Jul 2026 03:01:01 +0530 Subject: [PATCH] Update AppLens SignalR endpoint to diagnosticschatnext. Point public-cloud conversational diagnostics at the replacement hub so diagnose continues to work after the old chatHub retirement (#3164). Co-authored-by: Cursor --- .../changelog-entries/adwait-applens-signalr-endpoint.yml | 3 +++ tools/Azure.Mcp.Tools.AppLens/src/Services/AppLensService.cs | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 servers/Azure.Mcp.Server/changelog-entries/adwait-applens-signalr-endpoint.yml diff --git a/servers/Azure.Mcp.Server/changelog-entries/adwait-applens-signalr-endpoint.yml b/servers/Azure.Mcp.Server/changelog-entries/adwait-applens-signalr-endpoint.yml new file mode 100644 index 0000000000..802004cdef --- /dev/null +++ b/servers/Azure.Mcp.Server/changelog-entries/adwait-applens-signalr-endpoint.yml @@ -0,0 +1,3 @@ +changes: + - section: "Bugs Fixed" + description: "Updated AppLens conversational diagnostics to use the new SignalR endpoint." diff --git a/tools/Azure.Mcp.Tools.AppLens/src/Services/AppLensService.cs b/tools/Azure.Mcp.Tools.AppLens/src/Services/AppLensService.cs index 82d5cf79be..a11aaece65 100644 --- a/tools/Azure.Mcp.Tools.AppLens/src/Services/AppLensService.cs +++ b/tools/Azure.Mcp.Tools.AppLens/src/Services/AppLensService.cs @@ -531,10 +531,10 @@ private string GetConversationalDiagnosticsSignalREndpoint() { return _tenantService.CloudConfiguration.CloudType switch { - AzureCloudConfiguration.AzureCloud.AzurePublicCloud => "https://diagnosticschat.azure.com/chatHub", + AzureCloudConfiguration.AzureCloud.AzurePublicCloud => "https://diagnosticschatnext.azure.com/chathub", AzureCloudConfiguration.AzureCloud.AzureChinaCloud => "https://diagnosticschat.azure.cn/chatHub", AzureCloudConfiguration.AzureCloud.AzureUSGovernmentCloud => "https://diagnosticschat.azure.us/chatHub", - _ => "https://diagnosticschat.azure.com/chatHub", + _ => "https://diagnosticschatnext.azure.com/chathub", }; }