Interface StatefulSessionStoreStats
-
- All Superinterfaces:
Stats
- All Known Subinterfaces:
HAStatefulSessionStoreStats
public interface StatefulSessionStoreStats extends Stats
- Since:
- 8.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AverageRangeStatisticgetActivatedBeanSize()Returns the total number of bytes activated by this storeCountStatisticgetActivationCount()Returns the total number of sessions activated from the storeCountStatisticgetActivationErrorCount()Returns the total number of sessions that could not be activated from the storeCountStatisticgetActivationSuccessCount()Returns the total number of sessions successfully activated from the storeAverageRangeStatisticgetActivationTime()Returns the time spent on activating beans from the storeRangeStatisticgetCurrentSize()Returns the number of passivated/checkpointed sessions in the storeCountStatisticgetExpiredSessionCount()Returns the total number of expired sessions that were removed by the storeAverageRangeStatisticgetPassivatedBeanSize()Returns the total number of bytes passivated by this storeCountStatisticgetPassivationCount()Returns the total number of sessions passivated using this storeCountStatisticgetPassivationErrorCount()Returns the total number of sessions that could not be passivated using the storeCountStatisticgetPassivationSuccessCount()Returns the total number of sessions passivated successfully using this storeAverageRangeStatisticgetPassivationTime()Returns the time spent on passivating beans to the store-
Methods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
-
-
-
Method Detail
-
getCurrentSize
RangeStatistic getCurrentSize()
Returns the number of passivated/checkpointed sessions in the store- Returns:
- RangeStatistic
-
getActivationCount
CountStatistic getActivationCount()
Returns the total number of sessions activated from the store- Returns:
- CountStatistic
-
getActivationSuccessCount
CountStatistic getActivationSuccessCount()
Returns the total number of sessions successfully activated from the store- Returns:
- CountStatistic
-
getActivationErrorCount
CountStatistic getActivationErrorCount()
Returns the total number of sessions that could not be activated from the store- Returns:
- CountStatistic
-
getPassivationCount
CountStatistic getPassivationCount()
Returns the total number of sessions passivated using this store- Returns:
- CountStatistic
-
getPassivationSuccessCount
CountStatistic getPassivationSuccessCount()
Returns the total number of sessions passivated successfully using this store- Returns:
- CountStatistic
-
getPassivationErrorCount
CountStatistic getPassivationErrorCount()
Returns the total number of sessions that could not be passivated using the store- Returns:
- CountStatistic
-
getExpiredSessionCount
CountStatistic getExpiredSessionCount()
Returns the total number of expired sessions that were removed by the store- Returns:
- CountStatistic
-
getPassivatedBeanSize
AverageRangeStatistic getPassivatedBeanSize()
Returns the total number of bytes passivated by this store- Returns:
- AverageRangeStatistic
-
getPassivationTime
AverageRangeStatistic getPassivationTime()
Returns the time spent on passivating beans to the store- Returns:
- AverageRangeStatistic
-
getActivatedBeanSize
AverageRangeStatistic getActivatedBeanSize()
Returns the total number of bytes activated by this store- Returns:
- AverageRangeStatistic
-
getActivationTime
AverageRangeStatistic getActivationTime()
Returns the time spent on activating beans from the store- Returns:
- AverageRangeStatistic
-
-