Name | Description |
int initialSize | Initial size of the connection pool, as set on the Data Source Administration page in My webMethods. |
boolean closed | Flag indicating whether the connection pool is closed. |
int idleSize | Number of connections that can remain idle in the connection pool. |
int checkinCalls | Number of times a connection was checked back into the connection pool after use. |
int highWaterMark | Maximum number of created JDBC connections. |
int createCalls | Number of new JDBC connections that have been created. |
int maxSize | Maximum number of active connections allowed for this connection pool. |
int poolSize | Current size of the connection pool. |
int checkoutCalls | Number of connections that are currently checked out of the connection pool for use. These connections are considered “active” or “in use.” |
int checkedOutSize | Number of connections that can be checked out of the connection pool for use. |
int minSize | Minimum number of active connections allowed for this connection pool. |
deltacheckinCalls | Delta of the number of times a connection was checked back into the connection pool after use. This KPI reports the difference between the last two continuous poll readings of checkinCalls. |
deltacheckoutCalls | Delta of the number of connections that are currently checked out of the connection pool for use. These connections are considered “active” or “in use.” This KPI reports the difference between the last two continuous poll readings of checkoutCalls. |
deltacreateCalls | Delta of the number of new JDBC connections that have been created. This KPI reports the difference between the last two continuous poll readings of createCalls. |