docs/sources/alerting/examples/table-data.md
Not all data sources return time series data. SQL databases, CSV files, and some APIs often return results as rows or arrays of columns or fields — commonly referred to as tabular data.
This example shows how to create an alert rule using data in table format. Grafana treats each row as a separate alert instance, as long as the data meets the expected format.
When a query returns data in table format, Grafana transforms each row into a separate alert instance.
To evaluate each row (alert instance), it expects:
{{< admonition type="caution" >}} These three conditions must be met—otherwise, Grafana can’t evaluate the table data and the rule will fail. {{< /admonition >}}
Imagine you store disk usage in a DiskSpace table and you want to trigger alerts when the available space drops below 5%.
| Time | Host | Disk | PercentFree |
|---|---|---|---|
| 2021-06-07 | web1 | /etc | 3 |
| 2021-06-07 | web2 | /var | 4 |
| 2021-06-07 | web3 | /var | 8 |
To calculate the free space per Host and Disk in this case, you can use $__timeFilter to filter by time but without returning the date to Grafana:
SELECT
Host,
Disk,
AVG(PercentFree) AS PercentFree
FROM DiskSpace
WHERE $__timeFilter(Time)
GROUP BY Host, Disk
This query returns the following table response:
| Host | Disk | PercentFree |
|---|---|---|
| web1 | /etc | 3 |
| web2 | /var | 4 |
| web3 | /var | 8 |
When Alerting evaluates the query response, the data is transformed into three alert instances as previously detailed:
| Alert instance | Value |
|---|---|
{Host="web1", Disk="/etc"} | 3 |
{Host="web2", Disk="/var"} | 4 |
{Host="web3", Disk="/var"} | 8 |
Finally, an alert condition that checks for less than 5% of free space ($A < 5) would result in two alert instances firing:
| Alert instance | Value | State |
|---|---|---|
{Host="web1", Disk="/etc"} | 3 | Firing |
{Host="web2", Disk="/var"} | 4 | Firing |
{Host="web3", Disk="/var"} | 8 | Normal |
To test this quickly, you can simulate the table using the TestData data source:
Add the TestData data source through the Connections menu.
Go to Alerting and create an alert rule
Select TestData as the data source.
From Scenario, select CSV Content and paste this CSV:
host, disk, percentFree
web1, /etc, 3
web2, /var, 4
web3, /var, 8
Set a condition like $A < 5 and Preview the alert.
Grafana evaluates the table data and fires the two first alert instances.
{{< figure src="/media/docs/alerting/example-table-data-preview.png" max-width="750px" alt="Alert preview with tabular data using the TestData data source" >}}
{{< admonition type="tip" >}} You can explore this alerting example in Grafana Play.
Open the example to view alert evaluation results, generated alert instances, the alert history timeline, and alert rule details. {{< /admonition >}}
Note that when the Infinity plugin fetches CSV data, all the columns are parsed and returned as strings. By default, this causes the query expression to fail in Alerting.
To make it work, you need to format the CSV data as expected by Grafana Alerting.
In the query editor, specify the column names and their types to ensure that only one column is treated as a number.
{{< figure src="/media/docs/alerting/example-table-data-infinity-csv-data.png" max-width="750px" alt="Using the Infinity data source plugin to fetch CSV data in Alerting" >}}
Working with time series is similar—each series is treated as a separate alert instance, based on its label set.
The key difference is the data format:
last(), avg(), or max().For comparison, see the multi-dimensional time series data example.