mirror of
https://github.com/monitoring-mixins/website.git
synced 2024-12-14 11:37:31 +00:00
assets,site/content: daily assets regeneration
This commit is contained in:
parent
9da2b35249
commit
2d00bae235
2 changed files with 31 additions and 0 deletions
|
@ -210,6 +210,19 @@ groups:
|
|||
for: 5m
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexDistributorReachingInflightPushRequestLimit
|
||||
annotations:
|
||||
message: |
|
||||
Distributor {{ $labels.job }}/{{ $labels.instance }} has reached {{ $value | humanizePercentage }} of its inflight push request limit.
|
||||
expr: |
|
||||
(
|
||||
(cortex_distributor_inflight_push_requests / ignoring(limit) cortex_distributor_instance_limits{limit="max_inflight_push_requests"})
|
||||
and ignoring (limit)
|
||||
(cortex_distributor_instance_limits{limit="max_inflight_push_requests"} > 0)
|
||||
) > 0.8
|
||||
for: 5m
|
||||
labels:
|
||||
severity: critical
|
||||
- name: cortex_wal_alerts
|
||||
rules:
|
||||
- alert: CortexWALCorruption
|
||||
|
|
|
@ -322,6 +322,24 @@ labels:
|
|||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexDistributorReachingInflightPushRequestLimit
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexDistributorReachingInflightPushRequestLimit
|
||||
annotations:
|
||||
message: |
|
||||
Distributor {{ $labels.job }}/{{ $labels.instance }} has reached {{ $value | humanizePercentage }} of its inflight push request limit.
|
||||
expr: |
|
||||
(
|
||||
(cortex_distributor_inflight_push_requests / ignoring(limit) cortex_distributor_instance_limits{limit="max_inflight_push_requests"})
|
||||
and ignoring (limit)
|
||||
(cortex_distributor_instance_limits{limit="max_inflight_push_requests"} > 0)
|
||||
) > 0.8
|
||||
for: 5m
|
||||
labels:
|
||||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
### cortex_wal_alerts
|
||||
|
||||
##### CortexWALCorruption
|
||||
|
|
Loading…
Reference in a new issue