nagios: give digest emails more processing time before alerting.

(imported from commit ed4c005bc8d0ab2d7ad3ec9e05e3f3110c9fd024)
This commit is contained in:
Jessica McKellar 2014-01-28 17:20:42 -05:00
parent 5e38e2f0a0
commit a86dc0edae

View file

@ -50,7 +50,7 @@ now_struct = time.gmtime(now)
# While we are sending digest emails, at 11am each weekday, the mail queues can # While we are sending digest emails, at 11am each weekday, the mail queues can
# get backed up; don't alert on those. # get backed up; don't alert on those.
if not set(warn_queues) - set(("missedmessage_emails", "digest_emails")) and \ if not set(warn_queues) - set(("missedmessage_emails", "digest_emails")) and \
now_struct.tm_hour == 16 and now_struct.tm_min < 5: now_struct.tm_hour == 16 and now_struct.tm_min < 15:
status = 0 status = 0
print("%s|%s|%s|processing digests, not alerting on elevated mail queues" % ( print("%s|%s|%s|processing digests, not alerting on elevated mail queues" % (
now, status, states[status])) now, status, states[status]))