Interface SessionStatsMXBean
-
public interface SessionStatsMXBean
Management interface for the MBean "WebSphere:type=SessionStats". The Liberty profile makes this MBean available in its platform MBean server when the monitor-1.0 feature is enabled to allow monitoring of the Session.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getActiveCount()
The number of concurrently active sessions.long
getCreateCount()
The number of sessions that were createdlong
getInvalidatedCount()
The number of sessions that were invalidatedlong
getInvalidatedCountbyTimeout()
The number of sessions that were invalidated caused by timeoutlong
getLiveCount()
The number of local sessions that are currently cached in memory from the time at which this metric is enabled
-
-
-
Method Detail
-
getActiveCount
long getActiveCount()
The number of concurrently active sessions. A session is active if the WebSphere Application Server is currently processing a request that uses that session.
-
getLiveCount
long getLiveCount()
The number of local sessions that are currently cached in memory from the time at which this metric is enabled
-
getCreateCount
long getCreateCount()
The number of sessions that were created
-
getInvalidatedCountbyTimeout
long getInvalidatedCountbyTimeout()
The number of sessions that were invalidated caused by timeout
-
getInvalidatedCount
long getInvalidatedCount()
The number of sessions that were invalidated
-
-