Hi Scott, thanks for testing.
For reference the code I am using is here: https://github.com/horms/haproxy.git show-json And my minimal config file is as follows. Would it be possible for you to share you config with me (privately) ? global daemon stats socket /tmp/haproxy.stat mode 600 level admin pidfile /tmp/haproxy.pid log /dev/log local4 #tune.bufsize 2048 #tune.bufsize 4096 tune.bufsize 8192 #tune.bufsize 16384 tune.maxrewrite 1024 defaults mode http balance roundrobin timeout connect 4000 timeout client 42000 timeout server 43000 log global listen VIP_Name bind 127.0.0.1:10080 transparent mode http balance leastconn cookie SERVERID insert nocache indirect server backup 127.0.0.1:9081 backup non-stick option http-keep-alive option forwardfor option redispatch option abortonclose maxconn 40000 log global option httplog option log-health-checks server RIP1_Name 127.0.0.1 weight 100 cookie RIP_Name agent-check agent-port 12345 agent-inter 2000 check port 80 inter 2000 rise 2 fall 3 minconn 0 maxconn 0s on-marked-down shutdown-sessions disabled server RIP2_Name 127.0.0.1 weight 100 cookie RIP_Name agent-check agent-port 12345 agent-inter 2000 check port 80 inter 2000 rise 2 fall 3 minconn 0 maxconn 0s on-marked-down shutdown-sessions

