| |
|
| com.tc.management.beans.sessions.SessionMonitorMBean
All known Subclasses: com.tc.management.beans.sessions.SessionMonitor,
SessionMonitorMBean | public interface SessionMonitorMBean extends TerracottaMBean(Code) | | MBean for session monitoring of Terracotta-clustered sessions. This MBean tracks
session creation, session destruction, and requests processed.
|
Inner Class :public static interface SessionsComptroller | |
expireSession | boolean expireSession(String sessionId)(Code) | | Force session to expire
Parameters: sessionId - Session to expire True if expired |
getCreatedSessionCount | int getCreatedSessionCount()(Code) | | Sessions created in sample |
getDestroyedSessionCount | int getDestroyedSessionCount()(Code) | | Sessions destroyed in sample |
getRequestCount | int getRequestCount()(Code) | | Get count of total requests in sample
Total requests in sample |
getRequestRatePerSecond | int getRequestRatePerSecond()(Code) | | Requests per second in sample |
getSessionCreationRatePerMinute | int getSessionCreationRatePerMinute()(Code) | | Session creation rate in sample |
getSessionDestructionRatePerMinute | int getSessionDestructionRatePerMinute()(Code) | | Sessions destroyed rate in sample |
registerSessionsController | void registerSessionsController(SessionsComptroller comptroller)(Code) | | Register a sessions controller
Parameters: comptroller - Sessions controller |
requestProcessed | void requestProcessed()(Code) | | Event indicating to mbean that a request was processed.
|
reset | void reset()(Code) | | Reset sampling
|
sessionCreated | void sessionCreated()(Code) | | Event indicating to mbean that a session was created.
|
sessionDestroyed | void sessionDestroyed()(Code) | | Event indicating to mbean that a session was destroyed.
|
|
|
|