Increase `for` for `DomainProbeFailure`
Today we hit a stretch of over 3 hours where we could not successfully query `nix.ci`. Let's bump to a full day and see if we get that unlucky in the future.
Jeremy Fleischman committed
Mar 15, 2025 at 11:00 UTC
fe168d2b78fef9a40127ea89c13ab4130f51a3fa
1 file changed
+2
-2
build/pluto/prometheus/exporters/domain.nix
+2
-2
@@ -52,9 +52,9 @@
52
{
53
alert = "DomainProbeFailure";
54
expr = "domain_probe_success == 0";
55
- for = "3h";
55
+ for = "1d";
56
labels.severity = "warning";
57
- annotations.summary = "Domain {{ $labels.domain }} probe failing for more than 3 hours.";
57
+ annotations.summary = "Domain {{ $labels.domain }} probe failing for more than 1 day.";
58
}
59
];
60
}