{ "$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" } } }