Azure / Azure-Proactive-Resiliency-Library-v2

Azure Proactive Resiliency Library v2 (APRL) - Source for Azure WAF reliability guidance and associated ARG queries
https://azure.github.io/Azure-Proactive-Resiliency-Library-v2/
MIT License
58 stars 68 forks source link

💡 Feature Request - Recommendations for Managed Grafana #423

Open tksh164 opened 5 days ago

tksh164 commented 5 days ago

Describe the solution you'd like

WARAinScopeResTypes.csv has Microsoft.Dashboard/grafana with WARAInScope as yes. But there are no recommendations actually in APRL. So, APRL should have recommendations for Azure Managed Grafana (Microsoft.Dashboard/grafana).

Describe alternatives you've considered

n/a

Additional context

tksh164 commented 5 days ago

A KQL for the zone redundancy of Managed Grafana.

resources
| where type =~ "Microsoft.Dashboard/grafana"
| extend zoneRedundancy = properties.zoneRedundancy
| where zoneRedundancy !~ "Enabled"
| project
    recommendationId = "TBD",
    name,
    id,
    tags,
    param1 = strcat("location: ", location),
    param2 = strcat("sku: ", sku.name),
    param3 = strcat("zoneRedundancy: ", zoneRedundancy)