Skip to content

Commit

Permalink
fix elasticsearch rate rules (#418)
Browse files Browse the repository at this point in the history
* fix elasticsearch rate rules

* fix

* fix

* fix
  • Loading branch information
enesyalinkaya committed May 15, 2024
1 parent 826be58 commit 9877561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _data/rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "elasticsearch_indices_indexing_index_total > 100000"
query: "sum(rate(elasticsearch_indices_indexing_index_total[1m]))> 100000"
severity: warning
for: 5m
- name: Elasticsearch High Query Rate
description: "The query rate on Elasticsearch cluster is higher than the threshold."
query: "elasticsearch_indices_search_query_total > 100000"
query: "sum(rate(elasticsearch_indices_search_query_total[1m])) > 100000"
severity: warning
for: 5m
- name: Elasticsearch High Query Latency
Expand Down

0 comments on commit 9877561

Please sign in to comment.