Hello everyone,
Name: HAProxy
Version: 1.7.5-2~bpo8+1
Release_date: 2017/05/27
OS : Debian 8
i have something weird in my stats with this configuration :
backend be_abuse
bind-process 1
timeout server 60s
balance roundrobin
hash-balance-factor 0
acl untrusted_country var(req.country) XX
use-server respawn_abuse_untrusted if untrusted_country
server abuse [email protected] maxconn 1
server abuse_untrusted [email protected] maxconn 1 weight 0
when looking at stats i have
--- backend be_abuse : qcur 40 , qmax 77 , qtime 12575
--- server abuse : qcur 0 , qmax 0 , qtime 11963
--- server abuse_untrusted : qcur 38 , qmax 73 , qtime 13981
So it seems i have a false report for "server abuse" , i'm sure i have
queue in it, i have a positive qtime (and i see qtime at request level
in the logs). But qcur and qmax stay at 0
I have several backend like this one and the problem appears too.