public interface ConnectionPoolStatsMXBean
Modifier and Type | Method and Description |
---|---|
long |
getConnectionHandleCount()
The number of connections that are in use, including multiple connections shared from a single managed connection.
|
long |
getCreateCount()
The total number of managed connections created since pool creation.
|
long |
getDestroyCount()
The total number of managed connections destroyed since pool creation.
|
long |
getFreeConnectionCount()
The number of managed connections in the free pool.
|
double |
getInUseTime()
The average time in milliseconds a connection is in use.
|
long |
getManagedConnectionCount()
The total number of managed connections in the free, shared, and unshared pools.
|
double |
getWaitTime()
The average waiting time in milliseconds until a connection is granted if a connection is not currently available.
|
long getCreateCount()
long getDestroyCount()
long getConnectionHandleCount()
long getManagedConnectionCount()
double getWaitTime()
long getFreeConnectionCount()
double getInUseTime()