BigIP-iControl
view release on metacpan or search on metacpan
lib/BigIP/iControl.pm view on Meta::CPAN
sub get_pool_statistics {
my ($self, $pool)= @_;
return $self->_request(module => 'LocalLB', interface => 'Pool', method => 'get_statistics', data => {pool_names => [$pool]});
}
=head3 get_pool_statistics_stringified ($pool)
my %stats = $ic->get_pool_statistics_stringified($pool);
print "Pool $pool bytes in: $stats{stat}{STATISTIC_SERVER_SIDE_BYTES_OUT}";
Returns a hash containing all pool statistics for the specified pool in a delicious, easily digestable and improved formula.
=cut
sub get_pool_statistics_stringified {
my ($self, $pool)= @_;
return __process_statistics($self->get_pool_statistics($pool));
}
=head3 get_pool_member_statistics ($pool)
( run in 0.378 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )