The REST Api allow to get the list of all TCP addresses using the proxy with the number of requests by each address
This option is available on 4.30.00000 Service Pack 90 or above
use the following address to get the json
GET https:/x.x.x.x:9000/api/rest/proxy/cache/nodes
Return an array with the field results that handle the list of addresses ipaddr and requests number RQS
To test the results, you can use the local tool webfilter-rest:
webfilter-rest --nodes --local
stdClass Object
(
[message] => Connected nodes during 10mn
[status] => 1
[count] => 1
[results] => Array
(
[0] => stdClass Object
(
[ipaddr] => 192.168.1.32
[RQS] => 25231
)
)
)