Oracle WebLogic Server · Schema
ThreadPoolRuntime
Application ServerEnterpriseJava EEMiddlewareOracle
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 |
| standbyThreadCount | integer | Number of standby threads |
| pendingUserRequestCount | integer | Number of pending user requests |
| queueLength | integer | Work manager queue length |
| completedRequestCount | integer | Total completed requests |
| throughput | number | Request throughput |
| 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"
},
"standbyThreadCount": {
"type": "integer",
"description": "Number of standby threads"
},
"pendingUserRequestCount": {
"type": "integer",
"description": "Number of pending user requests"
},
"queueLength": {
"type": "integer",
"description": "Work manager queue length"
},
"completedRequestCount": {
"type": "integer",
"description": "Total completed requests"
},
"throughput": {
"type": "number",
"description": "Request throughput"
},
"healthState": {
"$ref": "#/components/schemas/HealthState"
}
}
}