Package org.glassfish.j2ee.statistics
Interface JDBCConnectionPoolStats
-
- All Superinterfaces:
JDBCConnectionStats,Stats
public interface JDBCConnectionPoolStats extends JDBCConnectionStats
Specifies the statistics provided by a JDBC connection pool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountStatisticgetCloseCount()Number of connections closed.CountStatisticgetCreateCount()Number of connections created.BoundedRangeStatisticgetFreePoolSize()Number of free connections in the pool.BoundedRangeStatisticgetPoolSize()Size of the connection pool.RangeStatisticgetWaitingThreadCount()Number of threads waiting for a connection.-
Methods inherited from interface org.glassfish.j2ee.statistics.JDBCConnectionStats
getJdbcDataSource, getUseTime, getWaitTime
-
Methods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
-
-
-
Method Detail
-
getCreateCount
CountStatistic getCreateCount()
Number of connections created.
-
getCloseCount
CountStatistic getCloseCount()
Number of connections closed.
-
getPoolSize
BoundedRangeStatistic getPoolSize()
Size of the connection pool.
-
getFreePoolSize
BoundedRangeStatistic getFreePoolSize()
Number of free connections in the pool.
-
getWaitingThreadCount
RangeStatistic getWaitingThreadCount()
Number of threads waiting for a connection.
-
-