From e1f78a1358e97943fa384a1eef029311c82ded79 Mon Sep 17 00:00:00 2001 From: Aditya Thebe Date: Fri, 15 Nov 2024 18:17:18 +0545 Subject: [PATCH] feat: new status on notification --- models/notifications.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/models/notifications.go b/models/notifications.go index 34e95f75..0d4813a3 100644 --- a/models/notifications.go +++ b/models/notifications.go @@ -59,6 +59,10 @@ const ( NotificationStatusSkipped = "skipped" // due to waitFor evaluation NotificationStatusSilenced = "silenced" NotificationStatusRepeatInterval = "repeat-interval" + + // health related notifications of kubernetes config items get into this state + // to wait for the incremental scraper to re-evaluate the health. + NotificationStatusEvaluatingWaitFor = "evaluating-waitfor" ) type NotificationSendHistory struct {