Package javax.management.j2ee.statistics
Interface JDBCConnectionStats
- All Superinterfaces:
Stats
- All Known Subinterfaces:
JDBCConnectionPoolStats
Specifies the statistics provided by all (pooled and non-pooled) JDBC connections.
-
Method Summary
Modifier and TypeMethodDescriptionIdentifies the JDBC driver for the corresponding JDBCConnection.Time spent using a connection.Time spent waiting for a connection to be available.Methods inherited from interface javax.management.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
Method Details
-
getJdbcDataSource
String getJdbcDataSource()Identifies the JDBC driver for the corresponding JDBCConnection. -
getWaitTime
TimeStatistic getWaitTime()Time spent waiting for a connection to be available. -
getUseTime
TimeStatistic getUseTime()Time spent using a connection.
-