mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-24 18:36:59 +08:00
Publish
This commit is contained in:
parent
59e6a9165d
commit
515fca9c10
1 changed files with 36 additions and 0 deletions
|
|
@ -138,3 +138,39 @@ groups:
|
||||||
annotations:
|
annotations:
|
||||||
summary: Elasticsearch no new documents (instance {{ $labels.instance }})
|
summary: Elasticsearch no new documents (instance {{ $labels.instance }})
|
||||||
description: "No new documents for 10 min!\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
description: "No new documents for 10 min!\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||||
|
|
||||||
|
- alert: ElasticsearchHighIndexingLatency
|
||||||
|
expr: 'elasticsearch_indices_indexing_index_time_seconds_total / elasticsearch_indices_indexing_index_total > 0.0005'
|
||||||
|
for: 10m
|
||||||
|
labels:
|
||||||
|
severity: warning
|
||||||
|
annotations:
|
||||||
|
summary: Elasticsearch High Indexing Latency (instance {{ $labels.instance }})
|
||||||
|
description: "The indexing latency on Elasticsearch cluster is higher than the threshold.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||||
|
|
||||||
|
- alert: ElasticsearchHighIndexingRate
|
||||||
|
expr: 'elasticsearch_indices_indexing_index_total > 100000'
|
||||||
|
for: 5m
|
||||||
|
labels:
|
||||||
|
severity: warning
|
||||||
|
annotations:
|
||||||
|
summary: Elasticsearch High Indexing Rate (instance {{ $labels.instance }})
|
||||||
|
description: "The indexing rate on Elasticsearch cluster is higher than the threshold.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||||
|
|
||||||
|
- alert: ElasticsearchHighQueryRate
|
||||||
|
expr: 'elasticsearch_indices_search_query_total > 100000'
|
||||||
|
for: 5m
|
||||||
|
labels:
|
||||||
|
severity: warning
|
||||||
|
annotations:
|
||||||
|
summary: Elasticsearch High Query Rate (instance {{ $labels.instance }})
|
||||||
|
description: "The query rate on Elasticsearch cluster is higher than the threshold.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||||
|
|
||||||
|
- alert: ElasticsearchHighQueryLatency
|
||||||
|
expr: 'elasticsearch_indices_search_fetch_time_seconds / elasticsearch_indices_search_fetch_total > 1'
|
||||||
|
for: 5m
|
||||||
|
labels:
|
||||||
|
severity: warning
|
||||||
|
annotations:
|
||||||
|
summary: Elasticsearch High Query Latency (instance {{ $labels.instance }})
|
||||||
|
description: "The query latency on Elasticsearch cluster is higher than the threshold.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue