Hello,
> If you want a metric that reflects only the number of TCP connections, the
> counters to look at are the ones tied to connection-level tracking (e.g.,
> stick tables using conn_rate, conn_cur, etc.), which operate strictly at the
> TCP layer and won’t multiply with HTTP/2 streams.
Thanks !
I want to count TCP connections per source address. so should I write
something like this ?
stick-table type ipv6 size 65k expire 1h store conn_cur
http-request deny deny_status 429 if { conn_cur ge 30 }
Olivier