mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
794937b3d6
Introduce a basic test for checking for duplicate rules. Signed-off-by: Holger Hans Peter Freyther <holger@moiji-mobile.com>
25 lines
690 B
YAML
25 lines
690 B
YAML
# This is a rules file with duplicate expressions
|
|
|
|
groups:
|
|
- name: base
|
|
rules:
|
|
- record: job:test:count_over_time1m
|
|
expr: sum without(instance) (count_over_time(test[1m]))
|
|
|
|
# A recording rule that doesn't depend on input series.
|
|
- record: fixed_data
|
|
expr: 1
|
|
|
|
# Subquery with default resolution test.
|
|
- record: suquery_interval_test
|
|
expr: count_over_time(up[5m:])
|
|
|
|
# Duplicating
|
|
- record: job:test:count_over_time1m
|
|
expr: sum without(instance) (count_over_time(test[1m]))
|
|
|
|
- name: duplicate
|
|
rules:
|
|
- record: job:test:count_over_time1m
|
|
expr: sum without(instance) (count_over_time(test[1m]))
|