Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PhilipSchmid/33fb3ebe77a473a97591a5bab33a2b10 to your computer and use it in GitHub Desktop.
Save PhilipSchmid/33fb3ebe77a473a97591a5bab33a2b10 to your computer and use it in GitHub Desktop.
4 helpful Prometheus alerting rules for Cert-Manager & its Certificate CRs
- name: custom_certmanager_monitoring
rules:
- alert: CertManagerAbsent
expr: absent(up{job="cert-manager"})
for: 1h
annotations:
message: "Cert Manager has dissapeared from Prometheus service discovery."
labels:
severity: critical
- alert: CertManagerACMEProxyReachability
expr: |
sum by (host, status, method) (
rate(certmanager_http_acme_client_request_count{status!~"2.."}[1h])
) > 0
for: 4h
annotations:
message: "Cert manager did not receive a successful response from the ACME proxy."
labels:
severity: warning
- alert: CertManagerCertExpireSoon
expr: |
sum without (exported_namespace)(
label_replace (
avg by (exported_namespace, name) (
certmanager_certificate_expiration_timestamp_seconds - time() < (31 * 24 * 3600) unless ON(name, namespace)
certmanager_certificate_ready_status{condition!="True"} == 1),
"namespace", "$1", "exported_namespace", "(.+)"
)
)
for: 24h
annotations:
message: "The cert {{ $labels.name }} is {{ $value | humanizeDuration }} from expiry."
labels:
severity: minor
- alert: CertManagerCertNotReady
expr: |
sum without (exported_namespace)(
label_replace(
max by (name, exported_namespace, condition, namespace) (
certmanager_certificate_ready_status{condition!="True"} == 1
), "namespace", "$1", "exported_namespace", "(.+)"
)
)
for: 24h
annotations:
message: "The cert {{ $labels.name }} is not ready to serve traffic."
labels:
severity: minor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment