Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Request statistics for HTTPS pool

LuisCR
Nimbostratus
Nimbostratus

Hello community

Thank you for any help you can give me with this query.

How could I record incoming requests in the statistics of a pool for https?

LuisCR_0-1692889730806.png

 

1 REPLY 1

PeteWhite
F5 Employee
F5 Employee

HTTP requests are not normally included in pool stats afaik. However, you can use iStats to assign a statistic to the pool

when HTTP_REQUEST {
set pool_name [LB::server pool]
set pool_member_addr [LB::server addr]
set pool_member_port [LB::server port]
ISTATS::incr "ltm.pool $pool member $pool_member_addr:$pool_member_port counter requests" 1
}

. You can see these via the CLI with "tmsh show ltm pool"