You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/managed-grafana/known-limitations.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,20 @@
1
1
---
2
-
title: Azure Managed Grafana service limitations
2
+
title: Azure Managed Grafana service limits
3
3
titlesuffix: Azure Managed Grafana
4
-
description: Learn about current technical or feature limitations you may encounter in the Azure Managed Grafana service.
4
+
description: Learn about current service limits, quotas, and constraints you may encounter using Azure Managed Grafana.
5
5
ms.service: azure-managed-grafana
6
6
ms.topic: troubleshooting
7
-
ms.date: 10/08/2024
7
+
ms.date: 12/17/2024
8
8
ms.author: malev
9
9
ms.custom: engagement-fy23
10
10
author: maud-lv
11
11
---
12
12
13
-
# Limitations of Azure Managed Grafana
13
+
# Service limits, quotas, and constraints
14
14
15
15
Azure Managed Grafana delivers the native Grafana functionality in the highest possible fidelity. There are some differences between what it provides and what you can get by self-hosting Grafana. As a general rule, Azure Managed Grafana disables features and settings that might affect the security or reliability of the service and individual Grafana instances it manages.
16
16
17
-
## Current limitations
17
+
## Service limits
18
18
19
19
Azure Managed Grafana has the following known limitations:
title: Create an Azure Managed Grafana instance using the Azure CLI
3
-
description: Learn how to create a Managed Grafana instance using the Azure CLI
2
+
title: Create an Azure Managed Grafana instance with the Azure CLI
3
+
description: Learn how to get started with Azure Managed Grafana and create an Azure Managed Grafana instance using the Azure CLI.
4
4
ms.service: azure-managed-grafana
5
5
ms.topic: quickstart
6
6
author: maud-lv
7
7
ms.author: malev
8
-
ms.date: 10/06/2023
8
+
ms.date: 12/17/2024
9
9
ms.devlang: azurecli
10
10
ms.custom: engagement-fy23, devx-track-azurecli
11
+
# customer intent: As a developer or a data analyst, I want to create a new Azure Managed Grafana workspace using the Azure CLI.
11
12
---
12
13
13
14
# Quickstart: Create an Azure Managed Grafana instance using the Azure CLI
14
15
15
-
Get started by creating an Azure Managed Grafana workspace using the Azure CLI. Creating a workspace will generate a Grafana instance.
16
+
Get started using Azure Managed Grafana by creating an Azure Managed Grafana workspace using the Azure CLI.
16
17
17
18
>[!NOTE]
18
-
> Azure Managed Grafana now has [two pricing plans](overview.md#service-tiers). This guides takes you through creating a new workspace in the Standard plan. To generate a workspace in the newly released Essential (preview) plan, [use the Azure portal](quickstart-managed-grafana-portal.md). We are working on enabling the creation of a workspace in the Essential (preview) plan using the Azure CLI.
19
+
> Azure Managed Grafana has [two pricing plans](overview.md#service-tiers). This guides takes you through creating a new workspace in the Standard plan. To generate a workspace in the Essential (preview) plan, [use the Azure portal](quickstart-managed-grafana-portal.md).
19
20
20
21
## Prerequisites
21
22
22
-
- An Azure account for work or school and an active subscription. [Create an account for free](https://azure.microsoft.com/free).
23
-
- The [Azure CLI](/cli/azure/install-azure-cli).
23
+
- An Azure account for work or school with an active subscription. [Create an account for free](https://azure.microsoft.com/free).
24
+
24
25
- Minimum required role to create an instance: resource group Contributor.
26
+
25
27
- Minimum required role to access an instance: resource group Owner.
26
28
>[!NOTE]
27
29
> If you don't meet this requirement, once you've created a new Azure Managed Grafana instance, ask a User Access Administrator, subscription Owner or resource group Owner to grant you a Grafana Admin, Grafana Editor or Grafana Viewer role on the instance.
@@ -34,26 +38,26 @@ Open your CLI and run the `az login` command:
34
38
az login
35
39
```
36
40
37
-
This command will prompt your web browser to launch and load an Azure sign-in page.
41
+
This command prompts your web browser to launch and load an Azure sign-in page.
38
42
39
-
The CLI experience for Azure Managed Grafana is part of the `amg` extension for the Azure CLI (version 2.30.0 or higher). The extension will automatically install the first time you run the `az grafana` command.
43
+
The CLI experience for Azure Managed Grafana is part of the `amg` extension for the Azure CLI (version 2.30.0 or higher). The extension automatically installs the first time you run the `az grafana` command.
40
44
41
45
## Create a resource group
42
46
43
-
Run the code below to create resource group to organize the Azure resources needed to complete this quickstart. Skip this step if you already have a resource group you want to use.
47
+
Run the following code to create a resource group to organize the Azure resources needed to complete this quickstart. Skip this step if you already have a resource group you want to use.
| --name | Choose a unique name for your new resource group. | *grafana-rg* |
48
-
| --location | Choose an Azure region where Managed Grafana is available. For more info, go to [Products available by region](https://azure.microsoft.com/global-infrastructure/services/?products=managed-grafana).| *eastus* |
52
+
| --location | Choose an Azure region where Azure Managed Grafana is available. For more info, go to [Products available by region](https://azure.microsoft.com/global-infrastructure/services/?products=managed-grafana).| *eastus* |
49
53
50
54
```azurecli
51
55
az group create --location <location> --name <resource-group-name>
52
56
```
53
57
54
58
## Create an Azure Managed Grafana workspace
55
59
56
-
Run the code below to create an Azure Managed Grafana workspace.
60
+
Run the following code to create an Azure Managed Grafana workspace.
@@ -64,30 +68,30 @@ Run the code below to create an Azure Managed Grafana workspace.
64
68
az grafana create --name <managed-grafana-resource-name> --resource-group <resource-group-name>
65
69
```
66
70
67
-
Once the deployment is complete, you'll see a note in the output of the command line stating that the instance was successfully created, alongside with additional information about the deployment.
71
+
Once the deployment is complete, you see a note in the output of the command line stating that the instance was successfully created, alongside with additional information about the deployment.
68
72
69
73
> [!NOTE]
70
-
>Azure Managed Grafana has a system-assigned managed identity enabled by default. You can use a user-assigned managed identity or a service principal instead. To learn more, go to [Set up Azure Managed Grafana authentication and permissions (preview)](how-to-authentication-permissions.md).
74
+
>Azure Managed Grafana has a system-assigned managed identity enabled by default. You can use a user-assigned managed identity or a service principal instead. To learn more, go to [Set up Azure Managed Grafana authentication and permissions (preview)](how-to-authentication-permissions.md).
71
75
72
76
## Access your new Managed Grafana instance
73
77
74
78
Now let's check if you can access your new Managed Grafana instance.
75
79
76
80
1. Take note of the **endpoint** URL ending by `eus.grafana.azure.com`, listed in the CLI output.
77
81
78
-
1. Open a browser and enter the endpoint URL. Single sign-on via Microsoft Entra ID has been configured for you automatically. If prompted, enter your Azure account. You should now see your Azure Managed Grafana instance. From there, you can finish setting up your Grafana installation.
82
+
1. Open a browser and enter the endpoint URL. Single sign-on via Microsoft Entra ID is automatically configured. If prompted, log in with your Azure account. You should now see your Azure Managed Grafana instance. From there, you can finish setting up your Grafana installation.
79
83
80
84
:::image type="content" source="media/quickstart-portal/grafana-ui.png" alt-text="Screenshot of a Managed Grafana instance.":::
81
85
82
-
You can now start interacting with the Grafana application to configure data sources, create dashboards, reports and alerts. Suggested read: [Monitor Azure services and applications using Grafana](/azure/azure-monitor/visualize/grafana-plugin).
83
-
84
86
## Clean up resources
85
87
86
88
In the preceding steps, you created an Azure Managed Grafana workspace in a new resource group. If you don't expect to need these resources again in the future, delete the resource group.
87
89
88
90
`az group delete -n <resource-group-name> --yes`
89
91
90
-
## Next steps
92
+
## Related content
93
+
94
+
You can now start interacting with the Grafana application to configure data sources, create dashboards, reports, and alerts. Suggested read:
91
95
92
-
> [!div class="nextstepaction"]
93
-
> [How to configure data sources for Azure Managed Grafana](./how-to-data-source-plugins-managed-identity.md)
96
+
- [Monitor Azure services and applications using Grafana](/azure/azure-monitor/visualize/grafana-plugin).
97
+
- [Configure data sources for Azure Managed Grafana](./how-to-data-source-plugins-managed-identity.md)
0 commit comments