I'm try to config haproxy to reuse connection(http keep alive) for reduce TCP establish connection cost It's ok for normal request. But for health check, it's alway create new connection to check backend. How can we re-use a connection for health check purpose. Here is my config
balance roundrobin
mode http
option http-keep-alive
option httpchk GET /actuator/health HTTP/1.1\r\nHost:\ 10.1.1.2:8003
server micro-dev 10.1.1.2:8003 check maxconn 2000
Thanks