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

    Modifier and Type
    Method
    Description
    long
    The number of concurrently active sessions.
    long
    The number of sessions that were created
    long
    The number of sessions that were invalidated
    long
    The number of sessions that were invalidated caused by timeout
    long
    The number of local sessions that are currently cached in memory from the time at which this metric is enabled
  • Method Details

    • 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