You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
########## alert working time ##########
# Monday is 1 and Sunday is 7.
# e.g, [1, 2, 3, 4, 5, 6, 7]
ALERT_WORKING_DAYS = [1, 2, 3, 4, 5, 6, 7]
EMAIL_WORKING_DAYS = [1, 2, 3, 4, 5, 6, 7]
EMAIL_WORKING_HOURS = range(24)
# From 0 to 23.
# e.g. [9] list(range(15, 18)) >>> [9, 15, 16, 17], or range(24) for 24 hours
ALERT_WORKING_HOURS = range(24)
########## basic triggers ##########
# Trigger alert every N seconds for each running job.
# The default is 0, set it to a positive integer to enable this trigger.
ON_JOB_RUNNING_INTERVAL = 1000
# Trigger alert when a job is finished.
# The default is False, set it to True to enable this trigger.
ON_JOB_FINISHED = True
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: