mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 00:47:18 +08:00
Publish
This commit is contained in:
parent
1adecd9ee7
commit
7dd767c4b4
1 changed files with 2 additions and 2 deletions
|
|
@ -149,7 +149,7 @@ groups:
|
|||
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'
|
||||
expr: 'sum(rate(elasticsearch_indices_indexing_index_total[1m]))> 10000'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
|
|
@ -158,7 +158,7 @@ groups:
|
|||
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'
|
||||
expr: 'sum(rate(elasticsearch_indices_search_query_total[1m])) > 100'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
|
|
|
|||
Loading…
Reference in a new issue