mirror of
https://github.com/grafana/grafana.git
synced 2025-09-28 00:53:43 +08:00

* Docs: Revise data source index * Docs: Consolidate data source administration docs * Docs: Revise panels docs related to data sources * Docs: Revise Alertmanager data source * Docs: Reorganize AWS CloudWatch data source docs * Docs: Reorganize Azure Monitor data source docs * Docs: Move azuremonitor to azure-monitor * Docs: Revise Elasticsearch docs * Docs: Move Elasticsearch index into bundle * Docs: Revise GCM docs * Docs: Revise Graphite docs * Docs: Move Graphite index into bundle * Docs: Revise InfluxDB docs * Docs: Revise Jaeger docs * Docs: Move Jaeger index into bundle * Docs: Revise Loki docs * Docs: Move Loki index into bundle * Docs: Revise MS SQL docs * Docs: Move MS SQL index into bundle * Docs: Revise Prometheus docs * Docs: Move Prometheus index into bundle * Docs: Revise Tempo docs * Docs: Move Tempo index into bundle * Docs: Revise TestData DB docs * Docs: Move TestData DB index into bundle * Docs: Revise Zipkin docs * Docs: Move Zipkin index into bundle * Docs: Move other data sources' index pages into bundles * Docs: Revise frontmatter * Fixing hugo markdown errors * Docs: Add query editor and template var sections to overview doc * Docs: Remove CTAs across data source docs * Docs: Remove CTA * Docs: Remove CTA * Docs: Fix links, images, typos, and usage consistency. * Docs: Fix typos * Docs: Fix CI issues * Update docs/sources/datasources/_index.md Co-authored-by: Torkel Ödegaard <torkel@grafana.com> * Update docs/sources/datasources/_index.md Co-authored-by: Torkel Ödegaard <torkel@grafana.com> * Docs: Fix query editor links * Update docs/sources/panels-visualizations/_index.md Co-authored-by: Torkel Ödegaard <torkel@grafana.com> * Update docs/sources/panels-visualizations/_index.md Co-authored-by: Torkel Ödegaard <torkel@grafana.com> * Docs: Rebundle child pages per writers' toolkit * Docs: Fix prettier for CI * Docs: Fix relrefs from outside data sources docs * Docs: Fix broken relrefs within datasources * Docs: Fix relrefs to data sources docs * Fixed some more refs Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
68 lines
3.6 KiB
Markdown
68 lines
3.6 KiB
Markdown
---
|
|
aliases:
|
|
- /docs/grafana/latest/datasources/azuremonitor/template-variables/
|
|
- /docs/grafana/latest/data-sources/azure-monitor/template-variables/
|
|
description: Using template variables with Azure Monitor in Grafana
|
|
keywords:
|
|
- grafana
|
|
- microsoft
|
|
- azure
|
|
- monitor
|
|
- application
|
|
- insights
|
|
- log
|
|
- analytics
|
|
- templates
|
|
- variables
|
|
- queries
|
|
menuTitle: Template variables
|
|
title: Azure Monitor template variables
|
|
weight: 400
|
|
---
|
|
|
|
# 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]({{< relref "../../../dashboards/variables" >}}) and [Add and manage variables]({{< relref "../../../dashboards/variables/add-template-variables" >}}) documentation.
|
|
|
|
## Use query variables
|
|
|
|
You can specify these Azure Monitor data source queries in the Variable edit view's **Query Type** field.
|
|
|
|
| Name | Description |
|
|
| ------------------- | -------------------------------------------------------------------------------------------- |
|
|
| **Subscriptions** | Returns subscriptions. |
|
|
| **Resource Groups** | Returns resource groups for a specified subscription. |
|
|
| **Namespaces** | Returns metric namespaces for the specified subscription and resource group. |
|
|
| **Resource Names** | Returns a list of resource names for a specified subscription, resource group and namespace. |
|
|
| **Metric Names** | Returns a list of metric names for a resource. |
|
|
| **Workspaces** | Returns a list of workspaces for the specified subscription. |
|
|
| **Logs** | Use a KQL query to return values. |
|
|
| **Resource Graph** | Use an ARG query to return values. |
|
|
|
|
Any Log Analytics Kusto Query Language (KQL) query that returns a single list of values can also be used in the Query field.
|
|
For example:
|
|
|
|
| Query | List of values returned |
|
|
| ----------------------------------------------------------------------------------------- | --------------------------------------- |
|
|
| `workspace("myWorkspace").Heartbeat \| distinct Computer` | Virtual machines |
|
|
| `workspace("$workspace").Heartbeat \| distinct Computer` | Virtual machines with template variable |
|
|
| `workspace("$workspace").Perf \| distinct ObjectName` | Objects from the Perf table |
|
|
| `workspace("$workspace").Perf \| where ObjectName == "$object"` `\| distinct CounterName` | Metric names from the Perf table |
|
|
|
|
### Query variable example
|
|
|
|
This time series query uses query variables:
|
|
|
|
```kusto
|
|
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 asc
|
|
```
|