alerts-vmalert: reserve rule name for description (#7659)

This commit is contained in:
Hui Wang 2024-11-26 16:22:00 +08:00 committed by f41gh7
parent 103bd5bd88
commit 5f9db9a61f
No known key found for this signature in database
GPG key ID: 4558311CF775EC72

View file

@ -18,25 +18,25 @@ groups:
Check vmalert's logs for detailed error message." Check vmalert's logs for detailed error message."
- alert: AlertingRulesError - alert: AlertingRulesError
expr: sum(increase(vmalert_alerting_rules_errors_total[5m])) without(alertname, id) > 0 expr: sum(increase(vmalert_alerting_rules_errors_total[5m])) without(id) > 0
for: 5m for: 5m
labels: labels:
severity: warning severity: warning
annotations: annotations:
dashboard: "http://localhost:3000/d/LzldHAVnz?viewPanel=13&var-instance={{ $labels.instance }}&var-file={{ $labels.file }}&var-group={{ $labels.group }}" dashboard: "http://localhost:3000/d/LzldHAVnz?viewPanel=13&var-instance={{ $labels.instance }}&var-file={{ $labels.file }}&var-group={{ $labels.group }}"
summary: "Alerting rules are failing for vmalert instance {{ $labels.instance }}" summary: "Alerting rules are failing for vmalert instance {{ $labels.instance }}"
description: "Alerting rules execution is failing for group \"{{ $labels.group }}\" in file \"{{ $labels.file }}\". description: "Alerting rules execution is failing for \"{{ $labels.alertname }}\" from group \"{{ $labels.group }}\" in file \"{{ $labels.file }}\".
Check vmalert's logs for detailed error message." Check vmalert's logs for detailed error message."
- alert: RecordingRulesError - alert: RecordingRulesError
expr: sum(increase(vmalert_recording_rules_errors_total[5m])) without(recording, id) > 0 expr: sum(increase(vmalert_recording_rules_errors_total[5m])) without(id) > 0
for: 5m for: 5m
labels: labels:
severity: warning severity: warning
annotations: annotations:
dashboard: "http://localhost:3000/d/LzldHAVnz?viewPanel=30&var-instance={{ $labels.instance }}&var-file={{ $labels.file }}&var-group={{ $labels.group }}" dashboard: "http://localhost:3000/d/LzldHAVnz?viewPanel=30&var-instance={{ $labels.instance }}&var-file={{ $labels.file }}&var-group={{ $labels.group }}"
summary: "Recording rules are failing for vmalert instance {{ $labels.instance }}" summary: "Recording rules are failing for vmalert instance {{ $labels.instance }}"
description: "Recording rules execution is failing for group \"{{ $labels.group }}\" in file \"{{ $labels.file }}\". description: "Recording rules execution is failing for \"{{ $labels.recording }}\" from group \"{{ $labels.group }}\" in file \"{{ $labels.file }}\".
Check vmalert's logs for detailed error message." Check vmalert's logs for detailed error message."
- alert: RecordingRulesNoData - alert: RecordingRulesNoData