From c33ca958161ade8fa62eaa9106fc673bc85a8081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enes=20Yal=C4=B1nkaya?= <49714068+enesyalinkaya@users.noreply.github.com> Date: Wed, 15 May 2024 01:19:15 +0300 Subject: [PATCH] fix --- _data/rules.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/rules.yml b/_data/rules.yml index a2f7fe1..aa07219 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -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(irate(elasticsearch_indices_indexing_index_total))[1m]> 100000" + query: "sum(irate(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: "sum(irate(elasticsearch_indices_search_query_total))[1m] > 100000" + query: "sum(irate(elasticsearch_indices_search_query_total)[1m]) > 100000" severity: warning for: 5m - name: Elasticsearch High Query Latency