Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
samber committed May 15, 2024
1 parent 1adecd9 commit 7dd767c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7dd767c

Please sign in to comment.