26 lines
822 B
YAML
26 lines
822 B
YAML
groups:
|
|
- name: velero
|
|
rules:
|
|
- alert: VeleroBackupPartialFailures
|
|
annotations:
|
|
message:
|
|
Velero backup {{ $labels.schedule }} has {{$value | humanizePercentage}} partialy
|
|
failed backups.
|
|
expr:
|
|
velero_backup_partial_failure_total{schedule!=""} / velero_backup_attempt_total{schedule!=""}
|
|
> 0.25
|
|
for: 15m
|
|
labels:
|
|
severity: critical
|
|
- alert: VeleroBackupFailures
|
|
annotations:
|
|
message:
|
|
Velero backup {{$labels.schedule}} has {{$value | humanizePercentage}} failed
|
|
backups.
|
|
expr:
|
|
velero_backup_failure_total{schedule!=""} / velero_backup_attempt_total{schedule!=""}
|
|
> 0.25
|
|
for: 15m
|
|
labels:
|
|
severity: critical
|