Forum Discussion

jim_lehman_4711's avatar
jim_lehman_4711
Icon for Nimbostratus rankNimbostratus
Oct 27, 2005

STATISTIC_SERVER_SIDE_MAXIMUM_CONNECTIONS

using perl, how would I get_statictics for only one statistic type [STATISTIC_SERVER_SIDE_MAXIMUM_CONNECTIONS]

 

2 Replies

  • You are going to have to query the statistics for whatever object you are concerned with. Then within the statistics strcuture returned, there will be a list of statistic values. Lop through this until you find the type of "STATISTIC_SERVER_SIDE_MAXIMUM_CONNECTIONS".

     

     

    This statistics is available in the following objects:

     

     

    NAT, NodeAddress, Pool, PoolMember, SNATPool, SNATPoolMember, and SNATTranslationAddress.

     

     

    -Joe
  • That's the method I used based on the sample perl code. It works great, I was just fishing for a cleaner, more direct method of getting to a perticular stat. iControl is my first experience with soap, the data structures and method and...

     

    thanks for the help