mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 17:07:24 +08:00
Merge pull request #31 from GETandSELECT/master
correct wrong AND to OR for blackbox_exporter
This commit is contained in:
commit
f460b39c97
1 changed files with 1 additions and 1 deletions
|
|
@ -407,7 +407,7 @@ services:
|
|||
rules:
|
||||
- name: Status Code
|
||||
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
|
||||
- name: SSL certificate will expire soon
|
||||
description: SSL certificate expires in 30 days
|
||||
|
|
|
|||
Loading…
Reference in a new issue