ThreadPoolMetrics

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
executeThreadTotalCount integer Total execute threads
executeThreadIdleCount integer Idle execute threads
hoggingThreadCount integer Hogging threads
stuckThreadCount integer Stuck threads
pendingUserRequestCount integer Pending user requests
throughput number Thread pool throughput
completedRequestCount integer Completed requests
queueLength integer Current queue length
View JSON Schema on GitHub

JSON Schema

weblogic-threadpoolmetrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThreadPoolMetrics",
  "title": "ThreadPoolMetrics",
  "type": "object",
  "properties": {
    "executeThreadTotalCount": {
      "type": "integer",
      "description": "Total execute threads"
    },
    "executeThreadIdleCount": {
      "type": "integer",
      "description": "Idle execute threads"
    },
    "hoggingThreadCount": {
      "type": "integer",
      "description": "Hogging threads"
    },
    "stuckThreadCount": {
      "type": "integer",
      "description": "Stuck threads"
    },
    "pendingUserRequestCount": {
      "type": "integer",
      "description": "Pending user requests"
    },
    "throughput": {
      "type": "number",
      "format": "double",
      "description": "Thread pool throughput"
    },
    "completedRequestCount": {
      "type": "integer",
      "format": "int64",
      "description": "Completed requests"
    },
    "queueLength": {
      "type": "integer",
      "description": "Current queue length"
    }
  }
}