Forum Discussion

MR_PB_70911's avatar
MR_PB_70911
Icon for Nimbostratus rankNimbostratus
Feb 24, 2011

Get Local traffic statistics > Nodes

Hi

 

 

 

 

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} }