mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 06:12:49 +08:00

* Docs: adds queries and conditions doc * fixes link * fixes link * fix link * fixes typo * corrects relref --------- Co-authored-by: Chris Moyer <chris.moyer@grafana.com>
819 B
819 B
description | keywords | title | weight | |||
---|---|---|---|---|---|---|
Learn about Grafana alert instances |
|
Alert instances | 104 |
Alert instances
Grafana managed alerts support multi-dimensional alerting. Each alert rule can create multiple alert instances. This is exceptionally powerful if you are observing multiple series in a single expression.
Consider the following PromQL expression:
sum by(cpu) (
rate(node_cpu_seconds_total{mode!="idle"}[1m])
)
A rule using this expression will create as many alert instances as the amount of CPUs we are observing after the first evaluation, allowing a single rule to report the status of each CPU.
{{< figure src="/static/img/docs/alerting/unified/multi-dimensional-alert.png" caption="A multi-dimensional Grafana managed alert rule" >}}