Skip to content

Commit 4bde8b0

Browse files
authored
Increase CortexProvisioningTooManyWrites alert threshold to 160k (#60)
* Increase CortexProvisioningTooManyWrites alert threshold to 160k
1 parent 435c753 commit 4bde8b0

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
@@ -6,6 +6,7 @@
66
* [CHANGE] Remove chunks support for dashboards
77
* [CHANGE] Target 3M memory series per ingester instead of 1.5M
88
* [CHANGE] Update jsonnet-libs to Fri Jul 19 12:51:49 2024 #57
9+
* [CHANGE] Increase CortexProvisioningTooManyWrites alert threshold to 160e3
910
* [ENHANCEMENT] Configure `-ingester.client.grpc-compression` to be `snappy-block`
1011
* [ENHANCEMENT] Support Grafana 11 in Cortex Service Scaling Dashboard
1112

cortex-mixin/alerts/alerts.libsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,9 @@
407407
},
408408
{
409409
alert: 'CortexProvisioningTooManyWrites',
410-
// 80k writes / s per ingester max.
410+
// 160k writes / s per ingester max.
411411
expr: |||
412-
avg by (%s) (rate(cortex_ingester_ingested_samples_total[1m])) > 80e3
412+
avg by (%s) (rate(cortex_ingester_ingested_samples_total[1m])) > 160e3
413413
||| % $._config.alert_aggregation_labels,
414414
'for': '15m',
415415
labels: {

0 commit comments

Comments
 (0)