@cryptotaxi247 / infra-1 / commits / 96dd2302

Do not retrigger alert when values behind the comma change

Sandro committed Dec 20, 2025 at 21:01 UTC 96dd230294b9e6798dcae313b3794239d20615a8
1 file changed +1 -1
build/pluto/prometheus/exporters/zfs.nix
+1 -1
@@ -29,7 +29,7 @@
29 {
30 alert = "ZfsPoolFull";
31 expr = ''
32 - (zfs_pool_free_bytes / zfs_pool_size_bytes) * 100 < 15
32 + round((zfs_pool_free_bytes / zfs_pool_size_bytes) * 100, 1) < 15
33 '';
34 for = "30m";
35 labels.severity = "warning";