Skip to content

Commit

Permalink
Increase CortexProvisioningTooManyWrites alert threshold to 160k (#60)
Browse files Browse the repository at this point in the history
* Increase CortexProvisioningTooManyWrites alert threshold to 160k
  • Loading branch information
mvnarsing authored Sep 25, 2024
1 parent 435c753 commit 4bde8b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* [CHANGE] Remove chunks support for dashboards
* [CHANGE] Target 3M memory series per ingester instead of 1.5M
* [CHANGE] Update jsonnet-libs to Fri Jul 19 12:51:49 2024 #57
* [CHANGE] Increase CortexProvisioningTooManyWrites alert threshold to 160e3
* [ENHANCEMENT] Configure `-ingester.client.grpc-compression` to be `snappy-block`
* [ENHANCEMENT] Support Grafana 11 in Cortex Service Scaling Dashboard

Expand Down
4 changes: 2 additions & 2 deletions cortex-mixin/alerts/alerts.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,9 @@
},
{
alert: 'CortexProvisioningTooManyWrites',
// 80k writes / s per ingester max.
// 160k writes / s per ingester max.
expr: |||
avg by (%s) (rate(cortex_ingester_ingested_samples_total[1m])) > 80e3
avg by (%s) (rate(cortex_ingester_ingested_samples_total[1m])) > 160e3
||| % $._config.alert_aggregation_labels,
'for': '15m',
labels: {
Expand Down

0 comments on commit 4bde8b0

Please sign in to comment.