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
6cd72ded3a
commit
45e8345f93
2 changed files with 56 additions and 0 deletions
|
@ -298,6 +298,28 @@ groups:
|
|||
for: 3h
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: ThanosReceiveLimitsConfigReloadFailure
|
||||
annotations:
|
||||
description: Thanos Receive {{$labels.job}} has not been able to reload the
|
||||
limits configuration.
|
||||
runbook_url: https://github.com/thanos-io/thanos/tree/main/mixin/runbook.md#alert-name-thanosreceivelimitsconfigreloadfailure
|
||||
summary: Thanos Receive has not been able to reload the limits configuration.
|
||||
expr: sum by(job) (increase(thanos_receive_limits_config_reload_err_total{job=~".*thanos-receive.*"}[5m]))
|
||||
> 0
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
- alert: ThanosReceiveLimitsHighMetaMonitoringQueriesFailureRate
|
||||
annotations:
|
||||
description: Thanos Receive {{$labels.job}} is failing for {{$value | humanize}}%
|
||||
of meta monitoring queries.
|
||||
runbook_url: https://github.com/thanos-io/thanos/tree/main/mixin/runbook.md#alert-name-thanosreceivelimitshighmetamonitoringqueriesfailurerate
|
||||
summary: Thanos Receive has not been able to update the number of head series.
|
||||
expr: (sum by(job) (increase(thanos_receive_metamonitoring_failed_queries_total{job=~".*thanos-receive.*"}[5m]))
|
||||
/ 20) * 100 > 20
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
- name: thanos-sidecar
|
||||
rules:
|
||||
- alert: ThanosSidecarBucketOperationsFailed
|
||||
|
|
|
@ -434,6 +434,40 @@ labels:
|
|||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### ThanosReceiveLimitsConfigReloadFailure
|
||||
https://github.com/thanos-io/thanos/tree/main/mixin/runbook.md#alert-name-thanosreceivelimitsconfigreloadfailure
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: ThanosReceiveLimitsConfigReloadFailure
|
||||
annotations:
|
||||
description: Thanos Receive {{$labels.job}} has not been able to reload the limits
|
||||
configuration.
|
||||
runbook_url: https://github.com/thanos-io/thanos/tree/main/mixin/runbook.md#alert-name-thanosreceivelimitsconfigreloadfailure
|
||||
summary: Thanos Receive has not been able to reload the limits configuration.
|
||||
expr: sum by(job) (increase(thanos_receive_limits_config_reload_err_total{job=~".*thanos-receive.*"}[5m]))
|
||||
> 0
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
{{< /code >}}
|
||||
|
||||
##### ThanosReceiveLimitsHighMetaMonitoringQueriesFailureRate
|
||||
https://github.com/thanos-io/thanos/tree/main/mixin/runbook.md#alert-name-thanosreceivelimitshighmetamonitoringqueriesfailurerate
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: ThanosReceiveLimitsHighMetaMonitoringQueriesFailureRate
|
||||
annotations:
|
||||
description: Thanos Receive {{$labels.job}} is failing for {{$value | humanize}}%
|
||||
of meta monitoring queries.
|
||||
runbook_url: https://github.com/thanos-io/thanos/tree/main/mixin/runbook.md#alert-name-thanosreceivelimitshighmetamonitoringqueriesfailurerate
|
||||
summary: Thanos Receive has not been able to update the number of head series.
|
||||
expr: (sum by(job) (increase(thanos_receive_metamonitoring_failed_queries_total{job=~".*thanos-receive.*"}[5m]))
|
||||
/ 20) * 100 > 20
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
{{< /code >}}
|
||||
|
||||
### thanos-sidecar
|
||||
|
||||
##### ThanosSidecarBucketOperationsFailed
|
||||
|
|
Loading…
Reference in a new issue