Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 1fb3caa

Browse files
authored
Merge pull request #279 from grafana/increase-cortex-request-error-level
Increased CortexRequestErrors alert severity
2 parents fedc5a7 + 75c6c96 commit 1fb3caa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
git fetch origin
1616
git branch -u origin/main main
1717
```
18+
* [CHANGE] `CortexRequestErrors` alert severity raised from `warning` to `critical`. #279
1819
* [FEATURE] Added "Cortex / Slow queries" dashboard based on Loki logs. #271
1920
* [ENHANCEMENT] Add `EtcdAllocatingTooMuchMemory` alert for monitoring etcd memory usage. #261
2021
* [ENHANCEMENT] Sort legend descending in the CPU/memory panels. #271

cortex-mixin/alerts/alerts.libsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
{
2020
alert: 'CortexRequestErrors',
21-
// Note is alert_aggregation_labels is "job", this will repeat the label. But
21+
// Note if alert_aggregation_labels is "job", this will repeat the label. But
2222
// prometheus seems to tolerate that.
2323
expr: |||
2424
100 * sum by (%s, job, route) (rate(cortex_request_duration_seconds_count{status_code=~"5..",route!~"ready"}[1m]))
@@ -28,7 +28,7 @@
2828
||| % [$._config.alert_aggregation_labels, $._config.alert_aggregation_labels],
2929
'for': '15m',
3030
labels: {
31-
severity: 'warning',
31+
severity: 'critical',
3232
},
3333
annotations: {
3434
message: |||

0 commit comments

Comments
 (0)