| reviewed | 2025-03-25 |
|---|---|
| severity | Important |
| pillar | Reliability |
| category | RE:04 Target metrics |
| resource | Azure Managed Grafana |
| resourceType | Microsoft.Dashboard/grafana |
| online version | https://azure.github.io/PSRule.Rules.Azure/en/rules/Azure.Grafana.Version/ |
Grafana workspaces should be on Grafana version 10.
Support for Grafana version 10 within Azure Managed Grafana is deprecated. Azure Managed Grafana supports Grafana version 11. In August 2025, all Grafana workspaces running Grafana version 10 will be automatically upgraded to Grafana version 11.
However, Grafana 11 introduces several breaking changes. To avoid support disruptions, familiarize yourself with the breaking changes and start planning your upgrade. Plan to complete your upgrade to Grafana 11 before the deadline.
Consider familiarize yourself with the breaking changes introduced in Grafana 11, and plan to upgrade your Azure Managed Grafana workspaces before the deadline to avoid support disruptions.
To deploy Azure Managed Grafana workspaces that pass this rule:
- Set the
properties.grafanaMajorVersionproperty to11.
For example:
resource grafana 'Microsoft.Dashboard/grafana@2024-10-01' = {
name: name
location: location
sku: {
name: 'Standard'
}
identity: {
type: 'SystemAssigned'
}
properties: {
grafanaMajorVersion: '11'
zoneRedundancy: 'Enabled'
}
}To deploy Azure Managed Grafana workspaces that pass this rule:
- Set the
properties.grafanaMajorVersionproperty to11.
For example:
{
"type": "Microsoft.Dashboard/grafana",
"apiVersion": "2024-10-01",
"name": "[parameters('name')]",
"location": "[parameters('location')]",
"sku": {
"name": "Standard"
},
"identity": {
"type": "SystemAssigned"
},
"properties": {
"grafanaMajorVersion": "11",
"zoneRedundancy": "Enabled"
}
}az grafana update --name <azure-managed-grafana-workspace> --major-version 11