Forum Discussion
- SGray_83409Nimbostratus
Since there are enough views, but no reply though I'd put something in here to help folks out. Use this with my graceful stop routine.
How can i return the connections from each node displayed in Local traffic statistics.
Something like:
(Get-F5.iControl).LocalLBPoolMember.get_statistics(
But for Nodes.
Thanks
Since there are enough views, but no reply though I'd put something in here to help folks out. Use this with my graceful stop routine.
$ic = get-F5.iControl
$ic.LocalLBNodeAddress.get_statistics("NODE_IP") | %{$_.statistics.statistics | ? {$_.type -eq "STATISTIC_SERVER_SIDE_CURRENT_CONNECTIONS"} | %{$_.value.low} }