JMSRuntime

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
name string
connectionsCurrentCount integer Current number of JMS connections
connectionsTotalCount integer Total JMS connections created
connectionsHighCount integer High watermark of JMS connections
JMSServersCurrentCount integer Current number of JMS servers
JMSServersTotalCount integer Total JMS servers created
JMSServersHighCount integer High watermark of JMS servers
healthState object
View JSON Schema on GitHub

JSON Schema

weblogic-jmsruntime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JMSRuntime",
  "title": "JMSRuntime",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "connectionsCurrentCount": {
      "type": "integer",
      "description": "Current number of JMS connections"
    },
    "connectionsTotalCount": {
      "type": "integer",
      "description": "Total JMS connections created"
    },
    "connectionsHighCount": {
      "type": "integer",
      "description": "High watermark of JMS connections"
    },
    "JMSServersCurrentCount": {
      "type": "integer",
      "description": "Current number of JMS servers"
    },
    "JMSServersTotalCount": {
      "type": "integer",
      "description": "Total JMS servers created"
    },
    "JMSServersHighCount": {
      "type": "integer",
      "description": "High watermark of JMS servers"
    },
    "healthState": {
      "type": "object",
      "properties": {
        "state": {
          "type": "string"
        },
        "subsystemName": {
          "type": "string"
        }
      }
    }
  }
}