This is documentation for the next version of Grafana documentation. For the latest stable release, go to the latest version.
Azure Monitor template variables
Instead of hard-coding details such as resource group or resource name values in metric queries, you can use variables. This helps you create more interactive, dynamic, and reusable dashboards. Grafana refers to such variables as template variables.
For an introduction to templating and template variables, refer to the Templating and Add and manage variables.
Before you begin
- Ensure you have configured the Azure Monitor data source.
- If you want template variables to auto-populate subscriptions, set a Default Subscription in the data source configuration.
Create a template variable
To create a template variable for Azure Monitor:
- Open the dashboard where you want to add the variable.
- Click Dashboard settings (gear icon) in the top navigation.
- Select Variables in the left menu.
- Click Add variable.
- Enter a Name for your variable (e.g.,
subscription,resourceGroup,resource). - In the Type dropdown, select Query.
- In the Data source dropdown, select your Azure Monitor data source.
- In the Query Type dropdown, select the appropriate query type (see Available query types).
- Configure any additional fields required by the selected query type.
- Click Run query to preview the variable values.
- Configure display options such as Multi-value or Include All option as needed.
- Click Apply to save the variable.
Available query types
The Azure Monitor data source provides the following query types for template variables:
Note
Custom metrics cannot be emitted against a subscription or resource group. Select specific resources when retrieving custom metric namespaces or custom metric names.
Create cascading variables
Cascading variables (also called dependent or chained variables) allow you to create dropdown menus that filter based on previous selections. This is useful for drilling down from subscription to resource group to specific resource.
Example: Subscription → Resource Group → Resource Name
Step 1: Create a Subscription variable
- Create a variable named
subscription. - Set Query Type to Subscriptions.
Step 2: Create a Resource Group variable
- Create a variable named
resourceGroup. - Set Query Type to Resource Groups.
- In the Subscription field, select
$subscription.
Step 3: Create a Resource Name variable
- Create a variable named
resource. - Set Query Type to Resource Names.
- In the Subscription field, select
$subscription. - In the Resource Group field, select
$resourceGroup. - Select the appropriate Namespace for your resources (e.g.,
Microsoft.Compute/virtualMachines).
Now when you change the subscription, the resource group dropdown updates automatically, and when you change the resource group, the resource name dropdown updates.
Create a Logs variable
The Logs query type lets you use a KQL query to populate variable values. The query must return a single column of values.
To create a Logs variable:
- Create a new variable with Query Type set to Logs.
- Select a Resource (Log Analytics workspace or Application Insights resource).
- Enter a KQL query that returns a single column.
Logs variable query examples
You can reference other variables in your Logs query:
workspace("$workspace").Heartbeat | distinct Computerworkspace("$workspace").Perf
| where ObjectName == "$object"
| distinct CounterNameVariable refresh options
Control when your variables refresh by setting the Refresh option:
For dashboards with many variables or complex queries, use On dashboard load to improve performance.
Use variables in queries
After you create template variables, you can use them in your Azure Monitor queries by referencing them with the $ prefix.
Metrics query example
In a Metrics query, select your variables in the resource picker fields:
- Subscription:
$subscription - Resource Group:
$resourceGroup - Resource Name:
$resource
Logs query example
Reference variables directly in your KQL queries:
Perf
| where ObjectName == "$object" and CounterName == "$metric"
| where TimeGenerated >= $__timeFrom() and TimeGenerated <= $__timeTo()
| where $__contains(Computer, $computer)
| summarize avg(CounterValue) by bin(TimeGenerated, $__interval), Computer
| order by TimeGenerated ascMulti-value variables
You can enable Multi-value selection for Resource Groups and Resource Names variables. When using multi-value variables in a Metrics query, all selected resources must:
- Belong to the same subscription
- Be in the same Azure region
- Be of the same resource type (namespace)
Note
When a multi-value variable is used as a parameter in another variable query (for example, to retrieve metric names), only the first selected value is used. Ensure the first resource group and resource name combination is valid.
Troubleshoot template variables
If you encounter issues with template variables, try the following solutions.
Variable returns no values
- Verify the Azure Monitor data source is configured correctly and can connect to Azure.
- Check that the credentials have appropriate permissions to list the requested resources.
- For cascading variables, ensure parent variables have valid selections.
Variable values are outdated
- Check the Refresh setting and adjust if needed.
- Click the refresh icon next to the variable dropdown to manually refresh.
Multi-value selection not working in queries
- Ensure the resources meet the requirements (same subscription, region, and type).
- For Logs queries, use the
$__contains()macro to handle multi-value variables properly.



