Skip to content

Commit

Permalink
Update rules.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
samber committed May 15, 2024
1 parent 9877561 commit 1adecd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _data/rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ groups:
severity: warning
for: 15m
- name: Elasticsearch no new documents
description: No new documents for 10 min!
description: "No new documents for 10 min!"
query: 'increase(elasticsearch_indices_indexing_index_total{es_data_node="true"}[10m]) < 1'
severity: warning
- name: Elasticsearch High Indexing Latency
Expand All @@ -1135,12 +1135,12 @@ groups:
for: 10m
- name: Elasticsearch High Indexing Rate
description: "The indexing rate on Elasticsearch cluster is higher than the threshold."
query: "sum(rate(elasticsearch_indices_indexing_index_total[1m]))> 100000"
query: "sum(rate(elasticsearch_indices_indexing_index_total[1m]))> 10000"
severity: warning
for: 5m
- name: Elasticsearch High Query Rate
description: "The query rate on Elasticsearch cluster is higher than the threshold."
query: "sum(rate(elasticsearch_indices_search_query_total[1m])) > 100000"
query: "sum(rate(elasticsearch_indices_search_query_total[1m])) > 100"
severity: warning
for: 5m
- name: Elasticsearch High Query Latency
Expand Down

0 comments on commit 1adecd9

Please sign in to comment.