Package host.anzo.simon
Interface SimonRegistryStatistics
- All Superinterfaces:
SimonRemoteStatistics
- All Known Implementing Classes:
RegistryStatistics
An interface for getting some network related statistics about the SIMON
Registry-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the cumulative number of sessions which were managed (or are being managed) by this service, which means 'currently managed session count + closed session count'.intReturns the maximum number of sessions which were being managed at the same time.doubleReturns the maximum of thereadBytesThroughput.doubleReturns the maximum of thereadMessagesThroughput.doubleReturns the maximum of thewrittenBytesThroughput.doubleReturns the maximum of thewrittenMessagesThroughput.Methods inherited from interface host.anzo.simon.SimonRemoteStatistics
getLastIoTime, getLastReadTime, getLastWriteTime, getReadBytes, getReadBytesThroughput, getReadMessages, getReadMessagesThroughput, getScheduledWriteBytes, getScheduledWriteMessages, getWrittenBytes, getWrittenBytesThroughput, getWrittenMessages, getWrittenMessagesThroughput
-
Method Details
-
getLargestManagedSessionCount
int getLargestManagedSessionCount()Returns the maximum number of sessions which were being managed at the same time. -
getCumulativeManagedSessionCount
long getCumulativeManagedSessionCount()Returns the cumulative number of sessions which were managed (or are being managed) by this service, which means 'currently managed session count + closed session count'. -
getLargestReadBytesThroughput
double getLargestReadBytesThroughput()Returns the maximum of thereadBytesThroughput. -
getLargestWrittenBytesThroughput
double getLargestWrittenBytesThroughput()Returns the maximum of thewrittenBytesThroughput. -
getLargestReadMessagesThroughput
double getLargestReadMessagesThroughput()Returns the maximum of thereadMessagesThroughput. -
getLargestWrittenMessagesThroughput
double getLargestWrittenMessagesThroughput()Returns the maximum of thewrittenMessagesThroughput.
-