Alert on expiring certs
Eelco Dolstra committed
Apr 5, 2021 at 17:58 UTC
b2e823cf23821dc6ec8a0d96ff72111032e944be
1 file changed
+13
delft/eris.nix
+13
@@ -170,6 +170,19 @@ in {
170
}
171
];
172
}
173
+
174
+ {
175
+ name = "blackbox";
176
+ rules = [
177
+ {
178
+ alert = "CertificateExpiry";
179
+ expr = "probe_ssl_earliest_cert_expiry - time() < 86400 * 14";
180
+ for = "10m";
181
+ labels.severity = "page";
182
+ annotations.summary = "Certificate for {{ $labels.instance }} is expiring soon.";
183
+ }
184
+ ];
185
+ }
186
];
187
}) ];
188