HAProxy Enterprise Documentation 2.7r1
Redis Health Checks
HAProxy Enterprise can monitor a Redis service by sending the PING command. The check is valid if the server responds with the string +PONG. Add the option redis-check
directive to your backend
section and include a check
parameter on each server
line.
backend be_redis
option redis-check
server srv1 10.0.0.1:6379 check
server srv2 10.0.0.2:6379 check
Next up
SMTP Health Checks