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
4f9aa8c3ce
commit
d9176d9f6b
2 changed files with 149 additions and 0 deletions
|
@ -323,6 +323,55 @@ groups:
|
|||
for: 15m
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexIngesterTSDBHeadTruncationFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to truncate TSDB head.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_head_truncations_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexIngesterTSDBCheckpointCreationFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to create TSDB checkpoint.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_checkpoint_creations_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexIngesterTSDBCheckpointDeletionFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to delete TSDB checkpoint.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_checkpoint_deletions_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexIngesterTSDBWALTruncationFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to truncate TSDB WAL.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_wal_truncations_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: warning
|
||||
- alert: CortexIngesterTSDBWALCorrupted
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} got
|
||||
a corrupted TSDB WAL.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_wal_corruptions_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexIngesterTSDBWALWritesFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to write to TSDB WAL.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_wal_writes_failed_total[1m]) > 0
|
||||
for: 3m
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexQuerierHasNotScanTheBucket
|
||||
annotations:
|
||||
message: Cortex Querier {{ $labels.namespace }}/{{ $labels.instance }} has not
|
||||
|
@ -407,3 +456,11 @@ groups:
|
|||
for: 24h
|
||||
labels:
|
||||
severity: critical
|
||||
- alert: CortexCompactorRunFailed
|
||||
annotations:
|
||||
message: |
|
||||
{{ $labels.job }}/{{ $labels.instance }} failed to run compaction.
|
||||
expr: |
|
||||
increase(cortex_compactor_runs_failed_total[2h]) > 1
|
||||
labels:
|
||||
severity: critical
|
||||
|
|
|
@ -490,6 +490,85 @@ labels:
|
|||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexIngesterTSDBHeadTruncationFailed
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexIngesterTSDBHeadTruncationFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to truncate TSDB head.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_head_truncations_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexIngesterTSDBCheckpointCreationFailed
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexIngesterTSDBCheckpointCreationFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to create TSDB checkpoint.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_checkpoint_creations_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexIngesterTSDBCheckpointDeletionFailed
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexIngesterTSDBCheckpointDeletionFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to delete TSDB checkpoint.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_checkpoint_deletions_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexIngesterTSDBWALTruncationFailed
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexIngesterTSDBWALTruncationFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to truncate TSDB WAL.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_wal_truncations_failed_total[5m]) > 0
|
||||
labels:
|
||||
severity: warning
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexIngesterTSDBWALCorrupted
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexIngesterTSDBWALCorrupted
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} got a corrupted
|
||||
TSDB WAL.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_wal_corruptions_total[5m]) > 0
|
||||
labels:
|
||||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexIngesterTSDBWALWritesFailed
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexIngesterTSDBWALWritesFailed
|
||||
annotations:
|
||||
message: Cortex Ingester {{ $labels.namespace }}/{{ $labels.instance }} is failing
|
||||
to write to TSDB WAL.
|
||||
expr: |
|
||||
rate(cortex_ingester_tsdb_wal_writes_failed_total[1m]) > 0
|
||||
for: 3m
|
||||
labels:
|
||||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexQuerierHasNotScanTheBucket
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
|
@ -608,6 +687,19 @@ labels:
|
|||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
##### CortexCompactorRunFailed
|
||||
|
||||
{{< code lang="yaml" >}}
|
||||
alert: CortexCompactorRunFailed
|
||||
annotations:
|
||||
message: |
|
||||
{{ $labels.job }}/{{ $labels.instance }} failed to run compaction.
|
||||
expr: |
|
||||
increase(cortex_compactor_runs_failed_total[2h]) > 1
|
||||
labels:
|
||||
severity: critical
|
||||
{{< /code >}}
|
||||
|
||||
## Recording rules
|
||||
|
||||
{{< panel style="warning" >}}
|
||||
|
|
Loading…
Reference in a new issue