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

Commit 0470adb

Browse files
committed
Make CortexIngesterReachingSeriesLimit warning less sensitive
As it turns out, during normal shuffle-sharding operation, the 70% mark is often exceeded, but not by much. Therefore, this change sets the new warning mark at 75%. It also increases the `for` duration to 15m as the expected reaction time for warning alerts is usually in the order of hours, so we can as well wait a bit longer to see if the problem is transient. Signed-off-by: beorn7 <[email protected]>
1 parent 0d48edf commit 0470adb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* [ENHANCEMENT] cortex-mixin: Added `alert_excluded_routes` config to exclude specific routes from alerts. #338
3030
* [ENHANCEMENT] Added `CortexMemcachedRequestErrors` alert. #346
3131
* [ENHANCEMENT] Ruler dashboard: added "Per route p99 latency" panel in the "Configuration API" row. #353
32+
* [ENHANCEMENT] Tweaked threshould and `for` duration for `CortexIngesterReachingSeriesLimit` warning alert. #362
3233
* [BUGFIX] Fixed `CortexIngesterHasNotShippedBlocks` alert false positive in case an ingester instance had ingested samples in the past, then no traffic was received for a long period and then it started receiving samples again. #308
3334
* [BUGFIX] Alertmanager: fixed `--alertmanager.cluster.peers` CLI flag passed to alertmanager when HA is enabled. #329
3435
* [BUGFIX] Fixed `CortexInconsistentRuntimeConfig` metric. #335

cortex-mixin/alerts/alerts.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@
257257
(cortex_ingester_instance_limits{limit="max_series"} > 0)
258258
) > 0.7
259259
|||,
260-
'for': '5m',
260+
'for': '3h',
261261
labels: {
262262
severity: 'warning',
263263
},

0 commit comments

Comments
 (0)