Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions etc/kayobe/kolla/config/prometheus/blackbox.rules
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ groups:
rules:
- alert: BlackboxProbeFailed
expr: probe_success == 0
for: 0m
for: 2m
labels:
severity: critical
annotations:
Expand All @@ -25,12 +25,12 @@ groups:

- alert: BlackboxProbeHttpFailure
expr: probe_http_status_code <= 199 OR probe_http_status_code >= 400
for: 0m
for: 2m
labels:
severity: critical
annotations:
summary: Blackbox probe HTTP failure (instance {{ $labels.instance }})
description: "HTTP status code is not 200-399"
description: "HTTP status code is not 200-399. Blackbox exporter got status code: {{ $value }}"

- alert: BlackboxSslCertificateWillExpireSoon
expr: probe_ssl_earliest_cert_expiry - time() < 86400 * 30
Expand Down