mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-16 00:41:24 +01:00
0212219f6c
Adds `eval_offset` attribute for Groups.
If specified, Group will be evaluated at the exact time offset on the range of [0...evaluationInterval].
The setting might be useful for cron-like rules which must be evaluated at specific moments of time.
https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3409
Signed-off-by: Haley Wang <pipilong.25@gmail.com>
Co-authored-by: hagen1778 <roman@victoriametrics.com>
(cherry picked from commit 45c0e4bb31
)
14 lines
372 B
Plaintext
14 lines
372 B
Plaintext
groups:
|
|
- name: groupTest
|
|
## default interval is 1min, eval_offset shouldn't be greater than interval
|
|
eval_offset: 2m
|
|
rules:
|
|
- alert: VMRows
|
|
for: 2s
|
|
expr: sum(rate(vm_http_request_errors_total[2s])) > 0
|
|
labels:
|
|
label: bar
|
|
host: "{{ $labels.instance }}"
|
|
annotations:
|
|
summary: "{{ $value }}"
|