Upgrade Grafana version#
Reliability · Azure Managed Grafana · Rule · 2024_06 · Important
Grafana workspaces should be on Grafana version 10.
Description#
Support for Grafana version 9 within Azure Managed Grafana is deprecated and will retire on 31 August 2024. To avoid support disruptions, upgrade to Grafana version 10.
Recommendation#
Upgrade to Grafana version 10 for Azure Managed Grafana workspaces to avoid support disruptions.
Examples#
Configure with Azure template#
To deploy Azure Managed Grafana workspaces that pass this rule:
- Set the
properties.grafanaMajorVersion
property to10
.
For example:
Azure Template snippet
{
"type": "Microsoft.Dashboard/grafana",
"apiVersion": "2023-09-01",
"name": "[parameters('name')]",
"location": "[parameters('location')]",
"sku": {
"name": "Standard"
},
"identity": {
"type": "SystemAssigned"
},
"properties": {
"grafanaMajorVersion": "10"
}
}
Configure with Bicep#
To deploy Azure Managed Grafana workspaces that pass this rule:
- Set the
properties.grafanaMajorVersion
property to10
.
For example:
Azure Bicep snippet
resource grafana 'Microsoft.Dashboard/grafana@2023-09-01' = {
name: name
location: location
sku: {
name: 'Standard'
}
identity: {
type: 'SystemAssigned'
}
properties: {
grafanaMajorVersion: '10'
}
}
Configure with Azure CLI#
Links#
- RE:04 Target metrics
- Update to using Grafana version 10 for Azure Managed Grafana
- Upgrade to Grafana 10
- Azure resource deployment