Skip to content

Commit 74f19f5

Browse files
Minor modifications to Istio alert descriptions
1 parent 2ac484f commit 74f19f5

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

resources/istio/alerts.yaml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,45 +18,53 @@ configurations:
1818
labels:
1919
severity: warning
2020
annotations:
21-
description: Some of the Certificate Signing Request (CSR) were not correctly requested
21+
description: Some of the Certificate Signing Requests (CSR) were not correctly requested.
2222
- alert: '[Istio-Pilot] Inbound listener rules conflicts'
2323
expr: |
2424
pilot_conflict_inbound_listener > 0
2525
for: 5m
2626
labels:
2727
severity: warning
2828
annotations:
29-
description: There are some conflict with inbound listener rules
29+
description: There are some conflicts with inbound listener rules.
3030
- alert: '[Istio-Pilot] Endpoint found in unready state'
3131
expr: |
3232
pilot_endpoint_not_ready > 0
3333
for: 5m
3434
labels:
3535
severity: warning
3636
annotations:
37-
description: Endpoint found in unready state
37+
description: Endpoint found in unready state.
3838
- alert: '[Istio] Unstable requests for sidecar injections'
3939
expr: |
4040
rate(sidecar_injection_requests_total[5m]) - rate(sidecar_injection_success_total[5m]) > 0
4141
for: 5m
4242
labels:
4343
severity: warning
4444
annotations:
45-
description: Sidecar injections requests has no been successfully resolved
45+
description: Sidecar injections requests are failing.
4646
- alert: '[Istio-Envoy] High 4xx RequestError Rate'
4747
expr: |
4848
sum (rate(istio_requests_total{ response_code=~"4..", reporter="source"}[5m]))/ sum (rate(istio_requests_total{ reporter="source"}[5m]))> 0.05
4949
for: 5m
5050
labels:
5151
severity: critical
5252
annotations:
53-
description: High 4xx RequestError Rate
53+
description: 4xx RequestError Rate is higher than 5%.
54+
- alert: '[Istio-Envoy] High 5xx RequestError Rate'
55+
expr: |
56+
sum (rate(istio_requests_total{ response_code=~"5..", reporter="source"}[5m]))/ sum (rate(istio_requests_total{ reporter="source"}[5m]))> 0.05
57+
for: 5m
58+
labels:
59+
severity: critical
60+
annotations:
61+
description: 5xx RequestError Rate is higher than 5%.
5462
- alert: '[Istio-Envoy] High Request Latency'
5563
expr: |
5664
histogram_quantile(0.95,sum(rate(envoy_cluster_upstream_cx_connect_ms_bucket[5m])) by (le)) > 100
5765
for: 5m
5866
labels:
5967
severity: critical
6068
annotations:
61-
description: Envoy High Request Latency
69+
description: Envoy Request Latency is higher than 100ms.
6270

0 commit comments

Comments
 (0)