try to use OK alerts to reflect successful checks

This commit is contained in:
Alex Tau 2025-08-15 18:02:43 +03:00
parent d59d5ac4e2
commit 5f9952314d
8 changed files with 22 additions and 17 deletions

View file

@ -22,7 +22,7 @@ class AlertType(StrEnum):
class Severity(IntEnum):
OK = 0 # should only be used when persistent alerts resolve
OK = 0
INFO = 1
WARNING = 2
CRITICAL = 3