View This JDBC Data Source Runtime Collection
/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans
View this JDBC data source runtime collection.
Request
-
version(required): string
The version of the WebLogic REST interface.
-
excludeFields: string
The 'excludeFields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields whose name is not on the list will be returned. If not present, all fields are returned (unless the 'fields' query parameter is specified). Note: 'fields' must not be specified if 'excludeFields' is specified.
-
excludeLinks: string
The 'excludeLinks' query parameter is used to restrict which links are returned in the response. It is a comma separated list of link relationship names. If present, only links whose relationship name is not on the list will be returned. If not present, all links are returned (unless the 'links' query parameter is specified). Note: 'links' must not be specified if 'excludeLinks' is specified.
-
fields: string
The 'fields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields with matching names are returned. If not present, all fields are returned (unless the 'excludeFields' query parameter is specified). Note: 'excludeFields' must not be specified if 'fields' is specified.
-
links: string
The 'links' query parameter is used to restrict which links are returned in the response. It is a comma separated list of link relationship names. If present, only links with matching relationship names are returned. If not present, all links are returned (unless the 'excludeLinks' query parameter is specified). Note: 'excludeLinks' must not be specified if 'links' is specified.
-
Admin: basic
Type:
basic
Description:A user in the Admin security role.
-
Deployer: basic
Type:
basic
Description:A user in the Deployer security role.
-
Monitor: basic
Type:
basic
Description:A user in the Monitor security role.
-
Operator: basic
Type:
basic
Description:A user in the Operator security role.
Response
- application/json
200 Response
Returns a list of JDBC data source runtime entities.
object
-
activeConnectionsAverageCount:
integer(int32)
Read Only:
true
Average number of active connections in this instance of the data source.
Active connections are connections in use by an application. This value is only valid if the resource is configured to allow shrinking.
-
activeConnectionsCurrentCount:
integer(int32)
Read Only:
true
The number of connections currently in use by applications.
-
activeConnectionsHighCount:
integer(int32)
Read Only:
true
Highest number of active database connections in this instance of the data source since the data source was instantiated.
Active connections are connections in use by an application.
-
commitOutcomeRetryTotalCount:
integer(int64)
Read Only:
true
The cumulative total number of commit outcome query retries conducted before resolving the outcome or exceeding the retry seconds in this data source since the data source was deployed.
-
connectionDelayTime:
integer(int32)
Read Only:
true
The average amount of time, in milliseconds, that it takes to create a physical connection to the database.
The value is calculated as summary of all times to connect divided by the total number of connections.
-
connectionsTotalCount:
integer(int32)
Read Only:
true
The cumulative total number of database connections created in this data source since the data source was deployed.
-
currCapacity:
integer(int32)
Read Only:
true
The current count of JDBC connections in the connection pool in the data source.
-
currCapacityHighCount:
integer(int32)
Read Only:
true
Highest number of database connections available or in use (current capacity) in this instance of the data source since the data source was deployed.
-
databaseProductName:
string
Read Only:
true
The product name of the database that this data source is connected to.
-
databaseProductVersion:
string
Read Only:
true
The product version of the database that this data source is connected to.
-
deploymentState:
integer(int32)
Read Only:
true
The current deployment state of the module.
A module can be in one and only one of the following states. State can be changed via deployment or administrator console.
UNPREPARED. State indicating at this module is neither prepared or active.
PREPARED. State indicating at this module of this application is prepared, but not active. The classes have been loaded and the module has been validated.
ACTIVATED. State indicating at this module is currently active.
NEW. State indicating this module has just been created and is being initialized.
-
driverName:
string
Read Only:
true
The product name of the JDBC driver that this data source is configured to use.
-
driverVersion:
string
Read Only:
true
The version of the JDBC driver that this data source is configured to use.
-
enabled:
boolean
Read Only:
true
Indicates whether the data source is enabled or disabled:
true
if the data source is enabled.false
if the data source is disabled.
-
failedRepurposeCount:
integer(int64)
Read Only:
true
The number of repurpose errors that have occurred since the datasource was deployed.
-
failedReserveRequestCount:
integer(int64)
Read Only:
true
The cumulative, running count of requests for a connection from this data source that could not be fulfilled.
-
failuresToReconnectCount:
integer(int32)
Read Only:
true
The number of times that the data source attempted to refresh a database connection and failed.
Failures may occur when the database is unavailable or when the network connection to the database is interrupted.
-
highestNumAvailable:
integer(int32)
Read Only:
true
Highest number of database connections that were idle and available to be used by an application at any time in this instance of the data source since the data source was deployed.
- highestNumUnavailable: integer(int32)
-
lastTask:
array JDBC Data Source Task Runtime Reference
Title:
JDBC Data Source Task Runtime Reference
Read Only:true
Contains the JDBC data source task runtime reference.Get the last datasource Task
-
leakedConnectionCount:
integer(int32)
Read Only:
true
The number of leaked connections. A leaked connection is a connection that was reserved from the data source but was not returned to the data source by calling
close()
-
moduleId:
string
Read Only:
true
Returns the identifier for this Component. The identifier is unique within the application.
Typical modules will use the URI for their id. Web Modules will return their context-root since the web-uri may not be unique within an EAR.
Constraints
- unharvestable
-
name:
string
Read Only:
true
The name of this configuration. WebLogic Server uses an MBean to implement and persist the configuration.
Constraints
- unharvestable
-
numAvailable:
integer(int32)
Read Only:
true
The number of database connections that are currently idle and available to be used by applications in this instance of the data source.
- numUnavailable: integer(int32)
-
prepStmtCacheAccessCount:
integer(int64)
Read Only:
true
The cumulative, running count of the number of times that the statement cache was accessed.
-
prepStmtCacheAddCount:
integer(int64)
Read Only:
true
The cumulative, running count of the number of statements added to the statement cache.
Each connection in the connection pool has its own cache of statements. This number is the sum of the number of statements added to the caches for all connections in the connection pool.
-
prepStmtCacheCurrentSize:
integer(int32)
Read Only:
true
The number of prepared and callable statements currently cached in the statement cache.
Each connection in the connection pool has its own cache of statements. This number is the sum of the number of statements in the caches for all connections in the connection pool.
-
prepStmtCacheDeleteCount:
integer(int64)
Read Only:
true
The cumulative, running count of statements discarded from the cache.
Each connection in the connection pool has its own cache of statements. This number is the sum of the number of statements that were discarded from the caches for all connections in the connection pool.
-
prepStmtCacheHitCount:
integer(int32)
Read Only:
true
The cumulative, running count of the number of times that statements from the cache were used.
-
prepStmtCacheMissCount:
integer(int32)
Read Only:
true
The number of times that a statement request could not be satisfied with a statement from the cache.
-
properties:
object Properties
Title:
Properties
Read Only:true
Additional Properties Allowed: additionalPropertiesThe list of properties for a data source that are passed to the JDBC driver when creating database connections.
This is a privileged operation that can only be invoked by an authorized user.
-
repurposeCount:
integer(int64)
Read Only:
true
The number of times connections have been repurposed since the datasource was deployed.
-
reserveRequestCount:
integer(int64)
Read Only:
true
The cumulative, running count of requests for a connection from this data source.
-
resolvedAsCommittedTotalCount:
integer(int64)
Read Only:
true
The cumulative total number of commit outcomes successfully resolved as committed in this data source since the data source was deployed. This does not refer to the number of outcome query retries used to resolve the outcomes.
-
resolvedAsNotCommittedTotalCount:
integer(int64)
Read Only:
true
The cumulative total number of commit outcomes successfully resolved as not committed in this data source since the data source was deployed. This does not refer to the number of outcome query retries used to resolve the outcomes.
-
state:
string
Read Only:
true
The current state of the data source.
Possible states are:
Running
- the data source is enabled (deployed and notSuspended
). This is the normal state of the data source. This state includes conditions when the database server is not available and the data source is created (creation retry must be enabled) or when all connections have failed connection tests (on creation, on reserve, or periodic testing).Suspended
- the data source has been disabled.Shutdown
- the data source is shutdown and all database connections have been closed.Overloaded
- all resources in pool are in use.Unknown
- the data source state is unknown.
-
type:
string
Read Only:
true
Returns the type of the MBean.
Constraints
- unharvestable
-
unresolvedTotalCount:
integer(int64)
Read Only:
true
The cumulative total number of commit outcomes unsuccessfully resolved in this data source since the data source was deployed. This does not refer to the number of outcome query retries used to resolve the outcomes.
-
versionJDBCDriver:
string
Read Only:
true
The driver class name of the JDBC driver used to create database connections.
-
waitingForConnectionCurrentCount:
integer(int32)
Read Only:
true
The number of connection requests waiting for a database connection.
-
waitingForConnectionFailureTotal:
integer(int64)
Read Only:
true
The cumulative, running count of requests for a connection from this data source that had to wait before getting a connection and eventually failed to get a connection.
Waiting connection requests can fail for a variety of reasons, including waiting for longer than the ConnectionReserveTimeoutSeconds.
-
waitingForConnectionHighCount:
integer(int32)
Read Only:
true
Highest number of application requests concurrently waiting for a connection from this instance of the data source.
-
waitingForConnectionSuccessTotal:
integer(int64)
Read Only:
true
The cumulative, running count of requests for a connection from this data source that had to wait before getting a connection and eventually succeeded in getting a connection.
-
waitingForConnectionTotal:
integer(int64)
Read Only:
true
The cumulative, running count of requests for a connection from this data source that had to wait before getting a connection, including those that eventually got a connection and those that did not get a connection.
-
waitSecondsHighCount:
integer(int32)
Read Only:
true
The highest number of seconds that an application waited for a connection (the longest connection reserve wait time) from this instance of the connection pool since the connection pool was instantiated.
This value is updated when a completed
getConnection
request takes longer to return a connection than any previous request.
array
JDBC Data Source Task Runtime Reference
true
Get the last datasource Task
object
Properties
true
The list of properties for a data source that are passed to the JDBC driver when creating database connections.
This is a privileged operation that can only be invoked by an authorized user.