-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(alert): Add collector fail alert
- Loading branch information
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
groups: | ||
- name: HardwareObserver | ||
rules: | ||
- alert: CollectorFailed | ||
expr: '{__name__=~"(.*)_collector_failed"} == 1' | ||
for: 0m | ||
labels: | ||
severity: warning | ||
annotations: | ||
summary: Controller fetch failed. (instance {{ $labels.instance }}) | ||
description: | | ||
Collrector fetch failed. Please reach out to hardware-observer maintainers. | ||
LABELS = {{ $labels }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
rule_files: | ||
- ../../../src/prometheus_alert_rules/general.yaml | ||
|
||
evaluation_interval: 1m | ||
|
||
tests: | ||
- interval: 1m | ||
input_series: | ||
- series: ipmidcmicollector_collector_failed{instance="ubuntu-99", collector="IPMIDCMICollector"} | ||
values: '1x15' | ||
- series: ipmiselcollector_collector_failed{instance="ubuntu-99", collector="IPMISELCollector"} | ||
values: '1x15' | ||
|
||
alert_rule_test: | ||
- eval_time: 0m | ||
alertname: CollectorFailed | ||
exp_alerts: | ||
- exp_labels: | ||
severity: warning | ||
instance: ubuntu-99 | ||
collector: IPMIDCMICollector | ||
exp_annotations: | ||
summary: Controller fetch failed. (instance ubuntu-99) | ||
description: | | ||
Collrector fetch failed. Please reach out to hardware-observer maintainers. | ||
LABELS = map[__name__:ipmidcmicollector_collector_failed collector:IPMIDCMICollector instance:ubuntu-99] | ||
- exp_labels: | ||
severity: warning | ||
instance: ubuntu-99 | ||
collector: IPMISELCollector | ||
exp_annotations: | ||
summary: Controller fetch failed. (instance ubuntu-99) | ||
description: | | ||
Collrector fetch failed. Please reach out to hardware-observer maintainers. | ||
LABELS = map[__name__:ipmiselcollector_collector_failed collector:IPMISELCollector instance:ubuntu-99] |