mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 17:07:24 +08:00
fix: fix quantile query
This commit is contained in:
parent
4201302285
commit
95af2b4d95
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue