Monitor your Azure services in Grafana

You can monitor Azure services and applications by using Grafana and the included Azure Monitor data source plug-in. The plug-in retrieves data from these Azure services:

  • Azure Monitor Metrics for numeric time series data from Azure resources.
  • Azure Monitor Logs for log and performance data from Azure resources that enables you to query by using the powerful Kusto Query Language (KQL). You can use Application Insights log queries to retrieve Application Insights log based metrics
    • Application Insights log based metrics to let you analyze the health of your monitored apps. You can use Application Insights log queries in Grafana to use the Application Insights log metrics data.
  • Azure Resource Graph to quickly query and identify Azure resources across subscriptions.

You can then display this performance and availability data on your Grafana dashboard.

Use the following steps to set up a Grafana server and build dashboards for metrics and logs from Azure Monitor.

Set up Grafana

Follow these steps to set up Grafana.

Set up Azure Managed Grafana

Azure Managed Grafana is optimized for the Azure environment and works seamlessly with Azure Monitor. You can:

  • Manage user authentication and access control by using Microsoft Entra identities.
  • Pin charts from the Azure portal directly to Azure Managed Grafana dashboards.

Use this quickstart guide to create an Azure Managed Grafana workspace by using the Azure portal.

Set up Grafana locally

To set up a local Grafana server, download and install Grafana in your local environment.

Sign in to Grafana

Important

Internet Explorer and the older Microsoft Edge browsers aren't compatible with Grafana. You must use a chromium-based browser including Microsoft Edge. For more information, see Supported web browsers for Grafana.

Sign in to Grafana by using the endpoint URL of your Azure Managed Grafana workspace or your server's IP address.

Configure an Azure Monitor data source plug-in

Azure Managed Grafana includes an Azure Monitor data source plug-in. By default, the plug-in is preconfigured with a managed identity that can query and visualize monitoring data from all resources in the subscription in which the Grafana workspace was deployed. Skip ahead to the section "Build a Grafana dashboard."

Screenshot that shows the Azure Managed Grafana home page.

You can expand the resources that can be viewed by your Azure Managed Grafana workspace by configuring additional permissions to assign the included managed identity the Monitoring Reader role on other subscriptions or resources.

If you're using an instance that isn't Azure Managed Grafana, you have to set up an Azure Monitor data source.

  1. Select Add data source, filter by the name Azure, and select the Azure Monitor data source.

    Screenshot that shows Azure Monitor data source selection.

  2. Pick a name for the data source and choose between managed identity or app registration for authentication.

If you're hosting Grafana on your own Azure Virtual Machines or Azure App Service instance with managed identity enabled, you can use this approach for authentication. However, if your Grafana instance isn't hosted on Azure or doesn't have managed identity enabled, you'll need to use app registration with an Azure service principal to set up authentication.

Use managed identity

  1. Enable managed identity on your VM or App Service instance and change the Grafana server managed identity support setting to true.

    • The managed identity of your hosting VM or App Service instance needs to have the Monitoring Reader role assigned for the subscription, resource group, or resources of interest.
    • You'll also need to update the setting managed_identity_enabled = true in the Grafana server config. For more information, see Grafana configuration. After both steps are finished, you can then save and test access.
  2. Select Save & test and Grafana will test the credentials. You should see a message similar to the following one.

    Screenshot that shows Azure Monitor data source with config-approved managed identity.

Use app registration

  1. Create a service principal. Grafana uses a Microsoft Entra service principal to connect to Azure Monitor APIs and collect data. You must create, or use an existing service principal, to manage access to your Azure resources:

  2. Provide the connection details you want to use:

    • When you configure the plug-in, you can indicate which Azure Cloud you want the plug-in to monitor: Public, Azure US Government, Azure Germany, or Microsoft Azure operated by 21Vianet.

      Note

      Some data source fields are named differently than their correlated Azure settings:

      • Tenant ID is the Azure Directory ID.
      • Client ID is the Microsoft Entra Application ID.
      • Client Secret is the Microsoft Entra Application key value.
  3. Select Save & test and Grafana will test the credentials. You should see a message similar to the following one.

    Screenshot that shows Azure Monitor data source configuration with the approved app registration.

Use out-of-the-box dashboards

Azure Monitor contains out-of-the-box dashboards to use with Azure Managed Grafana and the Azure Monitor plugin.

Screenshot that shows out of the box Azure Monitor grafana dashboards.

Azure Monitor also supports out-of-the-box dashboards for seamless integration with Azure Monitor managed service for Prometheus. These dashboards are automatically deployed to Azure Managed Grafana when linked to Azure Monitor managed service for Prometheus.

Screenshot that shows out of the box Azure Monitor grafana dashboards for Azure Monitor managed service for Prometheus.

Build a Grafana dashboard

  1. Go to the Grafana home page and select New Dashboard.

  2. In the new dashboard, select Graph. You can try other charting options, but this article uses Graph as an example.

  3. A blank graph shows up on your dashboard. Select the panel title and select Edit to enter the details of the data you want to plot in this graph chart.

    Screenshot that shows Grafana new panel dropdown list options.

  4. Select the Azure Monitor data source you've configured.

    • Visualizing Azure Monitor metrics: Select Azure Monitor in the service dropdown list. A list of selectors shows up where you can select the resources and metric to monitor in this chart. To collect metrics from a VM, use the namespace Microsoft.Compute/VirtualMachines. After you've selected VMs and metrics, you can start viewing their data in the dashboard.

      Screenshot that shows Grafana panel config for Azure Monitor metrics.

    • Visualizing Azure Monitor log data: Select Azure Log Analytics in the service dropdown list. Select the workspace you want to query and set the query text. You can copy here any log query you already have or create a new one. As you enter your query, IntelliSense suggests autocomplete options. Select the visualization type, Time series > Table, and run the query.

      Note

      The default query provided with the plug-in uses two macros: $__timeFilter() and $__interval. These macros allow Grafana to dynamically calculate the time range and time grain, when you zoom in on part of a chart. You can remove these macros and use a standard time filter, such as TimeGenerated > ago(1h), but that means the graph wouldn't support the zoom-in feature.

      Screenshot of Grafana panel config for Azure Monitor logs.

  5. The following dashboard has two charts. The one on the left shows the CPU percentage of two VMs. The chart on the right shows the transactions in an Azure Storage account broken down by the Transaction API type.

    Screenshot of Grafana dashboards with two panels.

Pin charts from the Azure portal to Azure Managed Grafana

In addition to building your panels in Grafana, you can also quickly pin Azure Monitor visualizations from the Azure portal to new or existing Grafana dashboards by adding panels to your Grafana dashboard directly from Azure Monitor. Go to Metrics for your resource. Create a chart and select Save to dashboard, followed by Pin to Grafana. Choose the workspace and dashboard and select Pin to complete the operation.

Screenshot that shows the Pin to Grafana option in the Azure Monitor metrics explorer.

Advanced Grafana features

Grafana has advanced features.

Variables

Some query values can be selected through UI dropdowns and updated in the query. Consider the following query as an example:

Usage 
| where $__timeFilter(TimeGenerated) 
| summarize total_KBytes=sum(Quantity)*1024 by bin(TimeGenerated, $__interval) 
| sort by TimeGenerated

You can configure a variable that will list all available Solution values and then update your query to use it. To create a new variable, select the dashboard's Settings button in the top right area, select Variables, and then select New. On the variable page, define the data source and query to run to get the list of values.

Screenshot that shows a Grafana configure variable.

After it's created, adjust the query to use the selected values, and your charts will respond accordingly:

Usage 
| where $__timeFilter(TimeGenerated) and Solution in ($Solutions)
| summarize total_KBytes=sum(Quantity)*1024 by bin(TimeGenerated, $__interval) 
| sort by TimeGenerated

Screenshot that shows Grafana use variables.

Create dashboard playlists

One of the many useful features of Grafana is the dashboard playlist. You can create multiple dashboards and add them to a playlist configuring an interval for each dashboard to show. Select Play to see the dashboards cycle through. You might want to display them on a large wall monitor to provide a status board for your group.

Screenshot that shows a Grafana playlist example.

Optional: Monitor other datasources in the same Grafana dashboards

There are many data source plug-ins that you can use to bring these metrics together in a dashboard.

Here are good reference articles on how to use Telegraf, InfluxDB, Azure Monitor managed service for Prometheus, and Docker:

Here's an image of a full Grafana dashboard that has metrics from Azure Monitor and Application Insights.

Screenshot that shows a Grafana dashboard with multiple panels.

Clean up resources

If you've set up a Grafana environment on Azure, you're charged when resources are running whether you're using them or not. To avoid incurring additional charges, clean up the resource group created in this article.

  1. On the left menu in the Azure portal, select Resource groups > Grafana.
  2. On your resource group page, select Delete, enter Grafana in the text box, and then select Delete.

Next steps

Overview of Azure Monitor metrics