From 12f7eb722b14f471d7f1db66bf5d444afc0e9db8 Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Fri, 8 May 2026 17:03:32 -0400 Subject: [PATCH] fix: typo --- hbd/server/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hbd/server/config.py b/hbd/server/config.py index 0487b51..b99adff 100644 --- a/hbd/server/config.py +++ b/hbd/server/config.py @@ -108,10 +108,11 @@ THRESHOLD_DEFAULTS = { 'zfs_monitor': { 'pools': { '*': { - 'status': {0, + 'status': { + 'critical': 1, # Alert if pool health is not ONLINE 'operator': '>', 'hysteresis': 0.0, - 'display': 'ZFS pool {pool_name} is {health}', + 'display': 'ZFS pool {pool_name} is {health}' } } }