com.ibm.websphere.connectionpool.monitor

Interface ConnectionPoolStatsMXBean



  • public interface ConnectionPoolStatsMXBean
    Management interface for the MBean "WebSphere:type=ConnectionPoolStats". 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 connection pool.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      long getConnectionHandleCount()
      The number of Connection objects in use for a particular connection pool.
      long getCreateCount()
      The total number of connections created
      long getDestroyCount()
      The total number of connections closed.
      long getFreeConnectionCount()
      The number of free connections in the pool.
      long getManagedConnectionCount()
      The number of ManagedConnection objects in use for a particular connection pool.
      double getWaitTime()
      The average waiting time in milliseconds until a connection is granted.
    • Method Detail

      • getCreateCount

        long getCreateCount()
        The total number of connections created
      • getDestroyCount

        long getDestroyCount()
        The total number of connections closed.
      • getConnectionHandleCount

        long getConnectionHandleCount()
        The number of Connection objects in use for a particular connection pool.
      • getManagedConnectionCount

        long getManagedConnectionCount()
        The number of ManagedConnection objects in use for a particular connection pool.
      • getWaitTime

        double getWaitTime()
        The average waiting time in milliseconds until a connection is granted.
      • getFreeConnectionCount

        long getFreeConnectionCount()
        The number of free connections in the pool.