Skip to content

Commit 97169a1

Browse files
authored
Merge pull request #295012 from maud-lv/ml-g10deprecation
Create Grafana 11 upgrade article
2 parents a385cbc + 659162a commit 97169a1

File tree

7 files changed

+104
-1
lines changed

7 files changed

+104
-1
lines changed
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
---
2+
title: Upgrade Azure Managed Grafana to Grafana 11
3+
titleSuffix: Azure Managed Grafana
4+
description: "Learn how to upgrade an Azure Managed Grafana workspace from Grafana 10 to Grafana 11."
5+
ms.service: azure-managed-grafana
6+
author: maud-lv
7+
ms.author: malev
8+
ms.date: 02/28/2025
9+
ms.topic: how-to
10+
# customerIntent: As a user of Azure Managed Grafana, I want to upgrade my workspce from Grafana 10 to Grafana 11.
11+
---
12+
13+
# Upgrade to Grafana 11
14+
15+
Azure Managed Grafana will stop offering Grafana 10 as a supported software version on July 31, 2025. This guide provides information about the retirement of Grafana 10 and guides you through updating your Azure Managed Grafana workspace to Grafana 11.
16+
17+
> [!IMPORTANT]
18+
> We recommend that you familiarize yourself with the [breaking changes introduced in Grafana 11](https://grafana.com/docs/grafana/latest/breaking-changes/breaking-changes-v11-0/) and upgrade your workspace to Grafana 11 before August 2025. If your workspace is still running Grafana version 10 in August 2025, it will be automatically upgraded to Grafana 11.
19+
20+
## Prerequisites
21+
22+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free).
23+
- An existing Azure Managed Grafana instance. [Create one if you haven't already](quickstart-managed-grafana-portal.md).
24+
25+
## Retirement timeline
26+
27+
The following table outlines the retirement timeline.
28+
29+
| Key dates | Status |
30+
|-------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------|
31+
| March 2025 | Users can start to upgrade existing workspaces to Grafana 11. |
32+
| June 2025 | <li>All new workspaces use Grafana 11. Creating new workspaces on Grafana 10 is disabled. <li> Users can still upgrade existing workspaces to Grafana 11. |
33+
| August 2025 | All workspaces are forcibly upgraded to Grafana 11. |
34+
35+
## Check the version of your Grafana workspace
36+
37+
To find out if your Azure Managed Grafana workspace needs to be upgraded, check the version of Grafana your workspace is running.
38+
39+
### [Portal](#tab/azure-portal)
40+
41+
In the Azure portal:
42+
43+
1. Open your Azure Managed Grafana workspace.
44+
1. In the left menu, under **Settings** select **Configuration**.
45+
1. Review the Grafana version listed under **Grafana Version**. If version 10 is selected in the dropdown menu, your workspace is on the Grafana version that is reaching end of life and is scheduled for retirement. We recommend that you upgrade your workspace to Grafana 11 by following the steps below. If your Grafana version is Grafana 11, no further action is necessary.
46+
47+
:::image type="content" source="media/grafana-11-upgrade/check-grafana-version.jpg" alt-text="Screenshot of the Azure platform showing Grafana Version 9.":::
48+
49+
### [Azure CLI](#tab/azure-cli)
50+
51+
Run the command [az grafana show](/cli/azure/grafana#az-grafana-show) in the Azure CLI to retrieve the properties of the Azure Managed Grafana workspace. Replace the placeholder `<azure-managed-grafana-workspace>` with the name of the Azure Managed Grafana instance.
52+
53+
```azurecli
54+
az grafana show --name <azure-managed-grafana-workspace>
55+
```
56+
57+
The version number is listed in the output after `grafanaMajorVersion`. If version is `10`, your workspace is on the Grafana version that is reaching end of life and is scheduled for retirement. We recommend that you upgrade your workspace to Grafana 11 by following the steps below. If your Grafana version is `11`, no further action is necessary.
58+
59+
---
60+
61+
## Upgrade to Grafana 11
62+
63+
Upgrade from Grafana 10 to Grafana 11 by following the steps below.
64+
65+
> [!IMPORTANT]
66+
> Grafana 11 includes significant breaking changes. Make sure to review the [Grafana Breaking changes in Grafana v11.0](https://grafana.com/docs/grafana/latest/breaking-changes/breaking-changes-v11-0/) article thoroughly before upgrading your workspace.
67+
68+
> [!CAUTION]
69+
> Upgrading to Grafana 11 is irreversible.
70+
71+
### [Portal](#tab/azure-portal)
72+
73+
In the Azure portal:
74+
75+
1. Once you have reviewed the breaking changes in Grafana 11 and are ready to proceed with the upgrade, open your workspace and select **Settings** > **Configuration** from the left menu.
76+
1. Under **Grafana Version**, select **11**.
77+
1. Select **Save** on top to save the new settings and trigger the upgrade to Grafana version 11.
78+
79+
:::image type="content" source="media/grafana-11-upgrade/save-upgrade.jpg" alt-text="Screenshot of the Azure portal showing Grafana version 11 selected in the dropdown menu and the Save button highlighted.":::
80+
81+
1. A notification appears, indicating that the upgrade is in progress. In the **Overview** page, Grafana’s **Provisioning State** is **Provisioning** until the upgrade is complete. After a few minutes, a notification appears, and the provisioning state becomes **Succeeded**.
82+
83+
### [Azure CLI](#tab/azure-cli)
84+
85+
In the Azure CLI:
86+
87+
1. Once you have reviewed the breaking changes in Grafana 11 and are ready to proceed with the upgrade, run the [az grafana update](/cli/azure/grafana#az-grafana-update) command and replace `<azure-managed-grafana-workspace>` with the name of your Azure Managed Grafana workspace.
88+
89+
```azurecli
90+
az grafana update --name <azure-managed-grafana-workspace> --major-version 11
91+
```
92+
93+
1. The CLI displays a warning indicating that upgrading to Grafana version 11 is a permanent an irreversible operation.
94+
---
95+
96+
## Next step
97+
98+
In this article, you have been guided through upgrading your Azure Managed Grafana workspace from Grafana 10 to Grafana 11. If needed, go to the following guide for additional support.
99+
100+
> [!div class="nextstepaction"]
101+
> [Find help or open a support ticket](./find-help-open-support-ticket.md)
Binary file not shown.
Binary file not shown.
Binary file not shown.
144 KB
Loading
108 KB
Loading

articles/managed-grafana/toc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,10 @@ items:
9898
href: how-to-migrate.md
9999
- name: Configure Grafana settings
100100
href: grafana-settings.md
101+
- name: Upgrade to Grafana 11
102+
href: how-to-upgrade-grafana-11.md
101103
- name: Troubleshoot common issues
102-
href: troubleshoot-managed-grafana.md
104+
href: troubleshoot-managed-grafana.md
103105
- name: Reference
104106
items:
105107
- name: Azure CLI

0 commit comments

Comments
 (0)