summaryrefslogtreecommitdiff
path: root/internal/state.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-22 09:53:32 +0200
committerPaul Buetow <paul@buetow.org>2026-01-22 09:53:32 +0200
commit4efabb7053c9e02c4cd1c0b687ba8b53e23ffa2b (patch)
tree8101ef690d982f40225312564488c7658b830694 /internal/state.go
parent820b4e6c483734ba1d57ecdd28838657d18b3159 (diff)
add SU: (suppressed) count to status summary line
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'internal/state.go')
-rw-r--r--internal/state.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/state.go b/internal/state.go
index 9deb178..b9631b4 100644
--- a/internal/state.go
+++ b/internal/state.go
@@ -169,8 +169,8 @@ func (s state) report(renotify, force bool, statusPageURL string, conf config) (
sb.WriteString("Have a nice day!\n")
- subject := fmt.Sprintf("GOGIOS Report [C:%d W:%d U:%d S:%d OK:%d]",
- numCriticals, numWarnings, numUnknown, numStale, numOK)
+ subject := fmt.Sprintf("GOGIOS Report [C:%d W:%d U:%d S:%d SU:%d OK:%d]",
+ numCriticals, numWarnings, numUnknown, numStale, numSuppressed, numOK)
doNotify := force || (changed || (renotify && hasUnhandled))
return subject, sb.String(), doNotify