1
0
Fork 0
mirror of https://github.com/monitoring-mixins/website.git synced 2024-12-14 11:37:31 +00:00
monitoring-mixins-website/site/content/cert-manager/_index.md
2021-03-04 03:26:54 +00:00

3.3 KiB

title
cert-manager

Overview

{{< panel style="danger" >}} Jsonnet source code is available at gitlab.com/uneeq-oss/cert-manager-mixin.git {{< /panel >}}

Alerts

{{< panel style="warning" >}} Complete list of pregenerated alerts is available here. {{< /panel >}}

cert-manager

CertManagerAbsent

{{< code lang="yaml" >}} alert: CertManagerAbsent annotations: description: New certificates will not be able to be minted, and existing ones can't be renewed until cert-manager is back. runbook_url: https://gitlab.com/uneeq-oss/cert-manager-mixin/-/blob/master/RUNBOOK.md#certmanagerabsent summary: Cert Manager has dissapeared from Prometheus service discovery. expr: absent(up{job="cert-manager"}) for: 10m labels: severity: critical {{< /code >}}

certificates

CertManagerCertExpirySoon

{{< code lang="yaml" >}} alert: CertManagerCertExpirySoon annotations: dashboard_url: https://grafana.example.com/d/TvuRo2iMk/cert-manager description: The domain that this cert covers will be unavailable after {{ $value | humanizeDuration }}. Clients using endpoints that this cert protects will start to fail in {{ $value | humanizeDuration }}. runbook_url: https://gitlab.com/uneeq-oss/cert-manager-mixin/-/blob/master/RUNBOOK.md#certmanagercertexpirysoon summary: The cert {{ $labels.name }} is {{ $value | humanizeDuration }} from expiry, it should have renewed over a week ago. expr: | avg by (exported_namespace, namespace, name) ( certmanager_certificate_expiration_timestamp_seconds - time() ) < (21 * 24 * 3600) # 21 days in seconds for: 1h labels: severity: warning {{< /code >}}

CertManagerCertNotReady

{{< code lang="yaml" >}} alert: CertManagerCertNotReady annotations: dashboard_url: https://grafana.example.com/d/TvuRo2iMk/cert-manager description: This certificate has not been ready to serve traffic for at least 10m. If the cert is being renewed or there is another valid cert, the ingress controller may be able to serve that instead. runbook_url: https://gitlab.com/uneeq-oss/cert-manager-mixin/-/blob/master/RUNBOOK.md#certmanagercertnotready summary: The cert {{ $labels.name }} is not ready to serve traffic. expr: | max by (name, exported_namespace, namespace, condition) ( certmanager_certificate_ready_status{condition!="True"} == 1 ) for: 10m labels: severity: critical {{< /code >}}

CertManagerHittingRateLimits

{{< code lang="yaml" >}} alert: CertManagerHittingRateLimits annotations: dashboard_url: https://grafana.example.com/d/TvuRo2iMk/cert-manager description: Depending on the rate limit, cert-manager may be unable to generate certificates for up to a week. runbook_url: https://gitlab.com/uneeq-oss/cert-manager-mixin/-/blob/master/RUNBOOK.md#certmanagerhittingratelimits summary: Cert manager hitting LetsEncrypt rate limits. expr: | sum by (host) ( rate(certmanager_http_acme_client_request_count{status="429"}[5m]) ) > 0 for: 5m labels: severity: critical {{< /code >}}

Dashboards

Following dashboards are generated from mixins and hosted on github: