mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-05 05:04:04 -08:00
592cb00c2f
Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
groups:
|
|
- name: my-group-name
|
|
interval: 30s # defaults to global interval
|
|
rules:
|
|
- alert: HighErrors
|
|
expr: |
|
|
sum without(instance) (rate(errors_total[5m]))
|
|
/
|
|
sum without(instance) (rate(requests_total[5m]))
|
|
for: 5m
|
|
labels:
|
|
severity: critical
|
|
annotations:
|
|
description: "stuff's happening with {{ $.labels.service }}"
|
|
|
|
# Mix recording rules in the same list
|
|
- record: "new_metric"
|
|
expr: |
|
|
sum without(instance) (rate(errors_total[5m]))
|
|
/
|
|
sum without(instance) (rate(requests_total[5m]))
|
|
labels:
|
|
abc: edf
|
|
uvw: xyz
|
|
|
|
- alert: HighErrors
|
|
expr: |
|
|
sum without(instance) (rate(errors_total[5m]))
|
|
/
|
|
sum without(instance) (rate(requests_total[5m]))
|
|
for: 5m
|
|
labels:
|
|
severity: critical
|
|
annotations:
|
|
description: "stuff's happening with {{ $.labels.service }}"
|
|
|
|
- name: my-another-name
|
|
interval: 30s # defaults to global interval
|
|
rules:
|
|
- alert: HighErrors
|
|
expr: |
|
|
sum without(instance) (rate(errors_total[5m]))
|
|
/
|
|
sum without(instance) (rate(requests_total[5m]))
|
|
for: 5m
|
|
labels:
|
|
severity: critical
|
|
|
|
- record: "new_metric"
|
|
expr: |
|
|
sum without(instance) (rate(errors_total[5m]))
|
|
/
|
|
sum without(instance) (rate(requests_total[5m]))
|
|
|
|
- alert: HighErrors
|
|
expr: |
|
|
sum without(instance) (rate(errors_total[5m]))
|
|
/
|
|
sum without(instance) (rate(requests_total[5m]))
|
|
for: 5m
|
|
labels:
|
|
severity: critical
|
|
annotations:
|
|
description: "stuff's happening with {{ $.labels.service }}"
|