Forum Discussion
Getting active pool member connections using Python
If I want to see all of the client connections connecting to a pool member from the CLI I can do something like a "show sys connection ss-server-addr 1.2.3.4". I can also do this using Postman mapping to ";, but I cannot figure out how to do this via Python.
Using Python if I try to connect to "bigip.sys.raw" I do not see a module called "connection" or anything similar. Does anyone know how, or have some sample code on how to accomplish this?
Thanks!
- Jason_NanceNimbostratus
The stats are pulled from the pool or member itself. Try this for an example:
!/usr/bin/env python3 from f5.bigip import ManagementRoot from getpass import getpass from pprint import pprint hostname = 'my.f5.ltm.net' username = 'foo' mgmt = ManagmentRoot(hostname, username, getpass()) pool = mgmt.tm.ltm.pools.pool.load(name='my_pool_name') poolstats = pool.stats.load() pprint(poolstats.raw) members = pool.members_s.get_collection() member0_stats = members[0].stats.load() pprint(member0_stats.raw)
- Jason_NanceNimbostratus
Ahhh... Okay, sorry, I'm picking up what you're putting down now.
I don't think that the Python SDK supports this but you can do it with REST calls (using
or your preference).requests
Here are a couple pages describing this:
https://devcentral.f5.com/codeshare/connection-list-via-icontrolrest-api
https://devcentral.f5.com/articles/demystifying-icontrol-rest-part-3-how-to-pass-query-parameters-and-tmsh-options (example 4 is exactly what you're trying to do, I think)
I suggest opening an RFE on the GitHub page:
- Tim_HarberCirrus
That example was a virtual IP, but was just the example IP I had in front on me. In reality I need this for both virtual servers and pool members.
But in any case, when I use your example for pool members I get the output of the value of the number of connected clients instead of the list of client IP's connected to the pool member as I showed above. My results for that code give me:
{'value': 5}
What I need is the list of those 5 IP's that are currently connected to that pool member which I can get using the CLI command "show sys connection ss-server-addr x.x.x.x"
- Jason_NanceNimbostratus
You're saying pool member but
is virtual server.cs-server-addr
If you want connections to the virtual server use:
virtual = mgmt.tm.ltm.pools.pool.load(name='my_vs_name') vsstats = virtual.stats.load()
If you want pool member stats they are in the
example above (you will need to iterate the pool members) -member0_stats = members[0].stats.load()
.member0_stats.entries['serverside.curConns']
Here's a graphical breakdown of the various cs/ss arguments:
https://worldtechit.com/view-delete-f5-load-balancer-active-connections/
The stats are pulled from the pool or member itself. Try this for an example:
!/usr/bin/env python3 from f5.bigip import ManagementRoot from getpass import getpass from pprint import pprint hostname = 'my.f5.ltm.net' username = 'foo' mgmt = ManagmentRoot(hostname, username, getpass()) pool = mgmt.tm.ltm.pools.pool.load(name='my_pool_name') poolstats = pool.stats.load() pprint(poolstats.raw) members = pool.members_s.get_collection() member0_stats = members[0].stats.load() pprint(member0_stats.raw)
Ahhh... Okay, sorry, I'm picking up what you're putting down now.
 
I don't think that the Python SDK supports this but you can do it with REST calls (using
or your preference).requests
 
Here are a couple pages describing this:
 
https://devcentral.f5.com/s/articles/connection-list-via-icontrolrest-api
 
https://devcentral.f5.com/s/articles/demystifying-icontrol-rest-part-3-how-to-pass-query-parameters-and-tmsh-optionss (example 4 is exactly what you're trying to do, I think)
 
I suggest opening an RFE on the GitHub page:
 
https://github.com/F5Networks/f5-common-python/issues
 
- Tim_HarberCirrus
That example was a virtual IP, but was just the example IP I had in front on me. In reality I need this for both virtual servers and pool members.
But in any case, when I use your example for pool members I get the output of the value of the number of connected clients instead of the list of client IP's connected to the pool member as I showed above. My results for that code give me:
{'value': 5}
What I need is the list of those 5 IP's that are currently connected to that pool member which I can get using the CLI command "show sys connection ss-server-addr x.x.x.x"
You're saying pool member but
cs-server-addr
is virtual server.
If you want connections to the virtual server use:
virtual = mgmt.tm.ltm.pools.pool.load(name='my_vs_name') vsstats = virtual.stats.load()
If you want pool member stats they are in the
member0_stats = members[0].stats.load()
example above (you will need to iterate the pool members) -
member0_stats.entries['serverside.curConns']
.
Here's a graphical breakdown of the various cs/ss arguments:
https://wtit.com/view-delete-f5-load-balancer-active-connections/
Recent Discussions
Related Content
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com