diff options
Diffstat (limited to 'internal/state.go')
| -rw-r--r-- | internal/state.go | 4 |
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 |
