Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(alert): Update ipmi power cosumption threshold to 300 #98

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/prometheus_alert_rules/ipmi_dcmi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ groups:
LABELS = {{ $labels }}
- alert: IPMIDCMIPowerConsumptionOutstanding
expr: ipmi_dcmi_power_cosumption_watts >= 200
expr: ipmi_dcmi_power_cosumption_watts >= 300
for: 5m
labels:
severity: warning
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_alert_rules/test_ipmi_dcmi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tests:
- series: ipmi_dcmi_command_success{instance="ubuntu-2"}
values: '1x15'
- series: ipmi_dcmi_power_cosumption_watts{instance="ubuntu-2"}
values: '220x15'
values: '320x15'

alert_rule_test:
- eval_time: 0m
Expand All @@ -43,5 +43,5 @@ tests:
summary: IPMI DCMI power consumption is high. (instance ubuntu-2)
description: |
IPMI DCMI power consumption is high for over 5 minutes.
POWER_CONSUMPTiON_WATTS = 220
POWER_CONSUMPTiON_WATTS = 320
LABELS = map[__name__:ipmi_dcmi_power_cosumption_watts instance:ubuntu-2]