mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-23 01:47:17 +08:00
correct wrong AND to OR
This commit is contained in:
parent
5aa24b7836
commit
bb5dba262f
1 changed files with 1 additions and 1 deletions
|
|
@ -407,7 +407,7 @@ services:
|
||||||
rules:
|
rules:
|
||||||
- name: Status Code
|
- name: Status Code
|
||||||
description: HTTP status code is not 200-299
|
description: HTTP status code is not 200-299
|
||||||
query: 'probe_http_status_code <= 199 AND probe_http_status_code >= 300'
|
query: 'probe_http_status_code <= 199 OR probe_http_status_code >= 300'
|
||||||
severity: error
|
severity: error
|
||||||
- name: SSL certificate will expire soon
|
- name: SSL certificate will expire soon
|
||||||
description: SSL certificate expires in 30 days
|
description: SSL certificate expires in 30 days
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue