Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.
Merged
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
9 changes: 8 additions & 1 deletion cortex-mixin/docs/playbooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,14 @@ _TODO: this playbook has not been written yet._

### CortexProvisioningTooManyWrites

_TODO: this playbook has not been written yet._
This alert fires if the average number of samples ingested / sec in ingesters is above our target.

How to **fix**:
- Scale up ingesters
- To compute the desired number of ingesters to satisfy the average samples rate you can run the following query, replacing `<namespace>` with the namespace to analyse and `<target>` with the target number of samples/sec per ingester (check out the alert threshold to see the current target):
```
sum(rate(cortex_ingester_ingested_samples_total{namespace="<namespace>"}[$__rate_interval])) / (<target> * 0.9)
```

### CortexAllocatingTooMuchMemory

Expand Down