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

grafana

Summary

RecommendationImpactCategoryAutomation AvailableIn Azure Advisor
Enable zone redundancy in Managed GrafanaMediumHigh AvailabilityYesNo

Details


Enable zone redundancy in Managed Grafana

Impact:  Medium Category:  High Availability

APRL GUID:  6cd57b65-ef84-4088-9ada-c0d8de74c2f7

Description:

Managed Grafana Standard tier is hosted on a dedicated set of VMs to provide redundancy. With zone redundancy enabled, VMs are spread across availability zones (AZ). Related resources are also configured for AZ. Zone redundancy can only be enabled when creating the Azure Managed Grafana instance.

Potential Benefits:

Enhanced Managed Grafana resilience to failures
Learn More:
Azure Managed Grafana service reliability
Enable zone redundancy in Azure Managed Grafana

ARG Query:

Click the Azure Resource Graph tab to view the query

// Azure Resource Graph Query
// Provides a list of Azure Managed Grafana resources that do not zone redundancy enabled.
resources
| where type =~ "Microsoft.Dashboard/grafana"
| extend zoneRedundancy = properties.zoneRedundancy
| where zoneRedundancy !~ "Enabled"
| project
    recommendationId = "6cd57b65-ef84-4088-9ada-c0d8de74c2f7",
    name,
    id,
    tags,
    param1 = strcat("location: ", location),
    param2 = strcat("sku: ", sku.name),
    param3 = strcat("zoneRedundancy: ", zoneRedundancy)