mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Alerting: Add note to the docs that GMA rules are evaluated concurrently (#78902)
This commit is contained in:
parent
2b0e7afb4e
commit
58d0c51cf4
@ -92,7 +92,7 @@ To do this, you need to make sure that your alert rule is in the right evaluatio
|
||||
|
||||
If you are creating a new evaluation group, specify the interval for the group.
|
||||
|
||||
All rules within the same group are evaluated sequentially over the same time interval.
|
||||
All rules within the same group are evaluated concurrently over the same time interval.
|
||||
|
||||
1. Enter a pending period.
|
||||
|
||||
|
@ -29,6 +29,8 @@ A namespace contains one or more groups. The rules within a group are run sequen
|
||||
|
||||
### Groups
|
||||
|
||||
The rules within a group are run sequentially at a regular interval, meaning no rules will be evaluated at the same time and in order of appearance.. The default interval is one (1) minute. You can rename Grafana Mimir or Loki rule namespaces and groups, and edit group evaluation intervals.
|
||||
The rules within a group are run sequentially at a regular interval, meaning no rules will be evaluated at the same time and in order of appearance. The default interval is one (1) minute. You can rename Grafana Mimir or Loki rule namespaces and groups, and edit group evaluation intervals.
|
||||
|
||||
> **Note** If you want rules to be evaluated concurrently and with different intervals, consider storing them in different groups.
|
||||
|
||||
> **Note** Grafana managed alert rules are evaluated concurrently instead of sequentially.
|
||||
|
@ -206,7 +206,7 @@ export function FolderAndGroup({
|
||||
<Field
|
||||
label="Evaluation group"
|
||||
data-testid="group-picker"
|
||||
description="Rules within the same group are evaluated sequentially over the same time interval."
|
||||
description="Rules within the same group are evaluated concurrently over the same time interval."
|
||||
className={styles.formInput}
|
||||
error={errors.group?.message}
|
||||
invalid={!!errors.group?.message}
|
||||
|
Loading…
Reference in New Issue
Block a user