Hi @zigzagcloud
Resolving Issues Relating to Message Delivery with Azure SignalR
Service
Inspect SignalR Logs Through Azure Monitor
Navigate to Azure Monitor and then go to Logs and search SignalRServiceDiagnosticLogs.
Look for failed connections and authentication logs alongside dropped messages.
Keep track of the Azure SignalR logs
SignalR has limits for connection per account, messages sent, and requests made at the same time.
Check the SignalR service and go to Scale to check the usage.
Make sure that the connection string of the application is in alignment with the Azure SignalR instance.
When using Managed Identity, permissions in Azure Role Based Access Control (RBAC) should be validated.
Azure SignalR Explorer can now be acquired in Visual Studio code.
Inspect clients that are connected, hubs that are active, and messages that are sent.
Confirm if tokens are valid and check if they are expired when you are relying on Azure AD / JWT authentication.
Make sure that CORS policies permit SignalR connections from different origins.
Authenticate SignalR Azure with safeguards in place
Use JavaScript to carry out a simple initial test:Resolving Issues Relating to Message Delivery with Azure SignalR Service
connection = new signalR.HubConnectionBuilder()
.withUrl("https://<your-signalr-endpoint>/chatHub")
.build();
connection.start().then(() => console.log("Connected!"));
connection.on("ReceiveMessage", (message) => console.log(message));
troubleshooting Azure SignalR Service issues. https://learn.microsoft.com/en-us/answers/questions/1691669/azure-signalr-service-(serverless)-stopped-working
If the answer is helpful, please click Accept Answer and kindly upvote it so that other people who faces similar issue may get benefitted from it.