rename weekly-backup → daily-backup across scripts, timers, services, and docs [ci skip]
Reflects the schedule change from weekly to daily. All references updated:
- scripts/weekly-backup.{sh,timer,service} → daily-backup.*
- Pushgateway job name: weekly-backup → daily-backup
- Prometheus metric names: weekly_backup_* → daily_backup_*
- All docs, runbooks, AGENTS.md, CLAUDE.md, proxmox-inventory
- offsite-sync dependency: After=daily-backup.service
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ca5039f8aa
commit
82f674a0b4
13 changed files with 72 additions and 72 deletions
|
|
@ -1282,19 +1282,19 @@ serverFiles:
|
|||
summary: "LVM thin pool has only {{ $value }}% free — snapshot overhead may cause pool exhaustion"
|
||||
# --- 3-2-1 Backup Pipeline Alerts ---
|
||||
- alert: WeeklyBackupStale
|
||||
expr: (time() - weekly_backup_last_run_timestamp{job="weekly-backup"}) > 777600
|
||||
expr: (time() - daily_backup_last_run_timestamp{job="daily-backup"}) > 777600
|
||||
for: 30m
|
||||
labels:
|
||||
severity: warning
|
||||
annotations:
|
||||
summary: "Weekly backup is {{ $value | humanizeDuration }} old (threshold: 9d)"
|
||||
summary: "Daily backup is {{ $value | humanizeDuration }} old (threshold: 9d)"
|
||||
- alert: WeeklyBackupFailing
|
||||
expr: weekly_backup_last_status{job="weekly-backup"} != 0
|
||||
expr: daily_backup_last_status{job="daily-backup"} != 0
|
||||
for: 0m
|
||||
labels:
|
||||
severity: warning
|
||||
annotations:
|
||||
summary: "Weekly backup completed with errors (status={{ $value }})"
|
||||
summary: "Daily backup completed with errors (status={{ $value }})"
|
||||
- alert: PfsenseBackupStale
|
||||
expr: (time() - backup_last_success_timestamp{job="pfsense-backup"}) > 777600
|
||||
for: 30m
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue