From 95af2b4d95775cb95c2ced9e7babd6fdd6b72943 Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Wed, 6 Jul 2022 12:49:49 +0200 Subject: [PATCH] fix: fix quantile query --- _data/rules.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/rules.yml b/_data/rules.yml index 7292022..e4623ee 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -1940,7 +1940,7 @@ groups: for: 1m - name: Istio latency 99 percentile description: Istio 1% slowest requests are longer than 1s. - query: 'histogram_quantile(0.99, rate(istio_request_duration_milliseconds_bucket[1m])) > 1' + query: 'histogram_quantile(0.99, sum(rate(istio_request_duration_milliseconds_bucket[1m])) by (le)) > 1' severity: warning for: 1m - name: Istio Pilot Duplicate Entry