]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MEDIUM: Lower priority of email alerts for log-health-checks messages
authorSimon Horman <horms@verge.net.au>
Thu, 30 Apr 2015 04:10:33 +0000 (13:10 +0900)
committerWilly Tarreau <w@1wt.eu>
Thu, 30 Apr 2015 05:30:50 +0000 (07:30 +0200)
Lower the priority of email alerts for log-health-checks messages from
LOG_NOTICE to LOG_INFO.

This is to allow set-ups with log-health-checks enabled to disable email
for health check state changes while leaving other email alerts enabled.

In order for email alerts to be sent for health check state changes
"log-health-checks" needs to be set and "email-alert level" needs to be 'info'
or lower. "email-alert mailers" and "email-alert to" settings are also
required in order for any email alerts to be sent.

A follow-up patch will document the above.

Signed-off-by: Simon Horman <horms@verge.net.au>
src/checks.c

index 8a0231deb0a85e8058c2dec98b550283ff8199e7..32c992195ec10a377a9629e53ccd8eabfba22686 100644 (file)
@@ -316,7 +316,7 @@ static void set_server_check_status(struct check *check, short status, const cha
 
                Warning("%s.\n", trash.str);
                send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
-               send_email_alert(s, LOG_NOTICE, "%s", trash.str);
+               send_email_alert(s, LOG_INFO, "%s", trash.str);
        }
 }