unsigned int cps_max; /* maximum of new connections received per second */
unsigned int sps_max; /* maximum of new connections accepted per second (sessions) */
- unsigned int nbpend_max; /* max number of pending connections with no server assigned yet (BE only) */
+ unsigned int nbpend_max; /* max number of pending connections with no server assigned yet */
unsigned int cur_sess_max; /* max number of currently active sessions */
long long bytes_in; /* number of bytes transferred from the client to the server */
const struct name_desc stat_fields[ST_F_TOTAL_FIELDS] = {
[ST_F_PXNAME] = { .name = "pxname", .desc = "Proxy name" },
[ST_F_SVNAME] = { .name = "svname", .desc = "Server name" },
- [ST_F_QCUR] = { .name = "qcur", .desc = "Current number of connections waiting in the server of backend queue" },
- [ST_F_QMAX] = { .name = "qmax", .desc = "Highest value of qcur encountered since process started" },
+ [ST_F_QCUR] = { .name = "qcur", .desc = "Number of current queued connections" },
+ [ST_F_QMAX] = { .name = "qmax", .desc = "Highest value of queued connections encountered since process started" },
[ST_F_SCUR] = { .name = "scur", .desc = "Current number of sessions on the frontend, backend or server" },
[ST_F_SMAX] = { .name = "smax", .desc = "Highest value of scur encountered since process started" },
[ST_F_SLIM] = { .name = "slim", .desc = "Frontend/listener/server's maxconn, backend's fullconn" },