Skip to content
Snippets Groups Projects
Commit 7ce72400 authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

[Blackbox] Alert when DNS resolvers seem down

parent 216a8f87
No related branches found
No related tags found
No related merge requests found
......@@ -199,6 +199,15 @@ groups:
description: "{{ $labels.instance }} is down for more than 2 minutes"
# Redirect to HTTP or DNS dashboard based on vmagent job name
dashboard: '{{ if eq $labels.job "blackbox-http" -}}https://grafana.picasoft.net/d/8BOa8W47z/services-web?var-instance={{ $labels.instance }}{{- else if eq $labels.job "blackbox-dns" -}}https://grafana.picasoft.net/d/1twteMV7k/serveurs-dns?var-instance={{ $labels.instance }}{{- else if eq $labels.job "blackbox-mail" -}}https://grafana.picasoft.net/d/VB5CUrn7k/postfix{{- end -}}'
- alert: BlackboxDNSResolutionFailed
expr: probe_http_duration_seconds{phase="resolve"} > 5
for: "5m"
labels:
severity: warning
annotations:
summary: "DNS resolver seems down"
description: "Taking too much time to resolve {{ $labels.instance }}. Check the health of DNS resolvers on the monitoring machine."
dashboard: 'https://grafana.picasoft.net/d/8BOa8W47z/services-web?var-instance={{ $labels.instance }}'
- alert: PostfixRejection
# As a test, alert when there is any rejection. If too much alert we will raise the threshold
expr: rate(postfix_smtpd_messages_rejected_total[5m]) > 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment