Azure Proactive Resiliency Library v2
Tools Glossary GitHub GitHub Issues Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

signalR

Summary

RecommendationImpactCategoryAutomation AvailableIn Azure Advisor
Enable zone redundancy for SignalRHighHigh AvailabilityYesNo

Details


Enable zone redundancy for SignalR

Impact:  High Category:  High Availability

APRL GUID:  6a8b3db9-5773-413a-a127-4f7032f34bbd

Description:

Use SignalR with zone redundancy for production to improve uptime. This feature, available in the Premium tier, is activated upon creating or upgrading to Premium. Standard can upgrade to Premium without downtime.

Potential Benefits:

Enhances reliability and uptime
Learn More:
Availability zones support in Azure SignalR Service

ARG Query:

Click the Azure Resource Graph tab to view the query

// Azure Resource Graph Query
// Find SignalR instances that are not configured with the Premium tier
resources
| where type == "microsoft.signalrservice/signalr"
| where location in~ ("australiaeast", "brazilsouth", "canadacentral", "centralindia", "centralus", "eastasia", "eastus", "eastus2", "francecentral", "germanywestcentral", "israelcentral", "italynorth", "japaneast", "japanwest", "koreacentral", "mexicocentral", "newzealandnorth", "northeurope", "norwayeast", "polandcentral", "qatarcentral", "southafricanorth", "southcentralus", "southeastasia", "spaincentral", "swedencentral", "switzerlandnorth", "uaenorth", "uksouth", "westeurope", "westus2", "westus3", "usgovvirginia", "chinanorth3")
| where sku.tier != "Premium"
| project recommendationId = "6a8b3db9-5773-413a-a127-4f7032f34bbd", name, id, tags, param1 = "AvailabilityZones: Single Zone"
| order by id asc