20 lines
576 B
YAML
20 lines
576 B
YAML
groups:
|
|
- name: lisglosips-base
|
|
rules:
|
|
- alert: LisgloSIPSTargetDown
|
|
expr: up == 0
|
|
for: 2m
|
|
labels:
|
|
severity: warning
|
|
annotations:
|
|
summary: "Prometheus target {{ $labels.instance }} is down"
|
|
|
|
- alert: LisgloSIPSDiskLow
|
|
expr: 100 * node_filesystem_avail_bytes{fstype!~"tmpfs|overlay"} / node_filesystem_size_bytes{fstype!~"tmpfs|overlay"} < 15
|
|
for: 10m
|
|
labels:
|
|
severity: warning
|
|
annotations:
|
|
summary: "Disk free space below 15% on {{ $labels.instance }}"
|
|
|