Oracle WebLogic Server APIs · Schema
ThreadPoolRuntime
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| executeThreadTotalCount | integer | Total number of execute threads |
| executeThreadIdleCount | integer | Number of idle execute threads |
| hoggingThreadCount | integer | Number of threads that are hogging resources |
| stuckThreadCount | integer | Number of stuck threads |
| pendingUserRequestCount | integer | Number of pending user requests in the queue |
| throughput | number | Thread pool throughput |
| completedRequestCount | integer | Total number of completed requests |
| overloadRejectedRequestsCount | integer | Number of requests rejected due to overload |
| queueLength | integer | Current queue length |
| sharedCapacityForWorkManagers | integer | Shared capacity for work managers |
| healthState | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ThreadPoolRuntime",
"title": "ThreadPoolRuntime",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"executeThreadTotalCount": {
"type": "integer",
"description": "Total number of execute threads"
},
"executeThreadIdleCount": {
"type": "integer",
"description": "Number of idle execute threads"
},
"hoggingThreadCount": {
"type": "integer",
"description": "Number of threads that are hogging resources"
},
"stuckThreadCount": {
"type": "integer",
"description": "Number of stuck threads"
},
"pendingUserRequestCount": {
"type": "integer",
"description": "Number of pending user requests in the queue"
},
"throughput": {
"type": "number",
"format": "double",
"description": "Thread pool throughput"
},
"completedRequestCount": {
"type": "integer",
"format": "int64",
"description": "Total number of completed requests"
},
"overloadRejectedRequestsCount": {
"type": "integer",
"format": "int64",
"description": "Number of requests rejected due to overload"
},
"queueLength": {
"type": "integer",
"description": "Current queue length"
},
"sharedCapacityForWorkManagers": {
"type": "integer",
"description": "Shared capacity for work managers"
},
"healthState": {
"type": "object",
"properties": {
"state": {
"type": "string"
},
"subsystemName": {
"type": "string"
}
}
}
}
}