Oracle WebLogic Server APIs · Schema
JMSDestinationMetrics
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Destination name |
| type | string | Destination type |
| messagesCurrentCount | integer | Current messages in the destination |
| messagesPendingCount | integer | Pending messages |
| messagesHighCount | integer | High watermark of messages |
| messagesReceivedCount | integer | Total received messages |
| consumersCurrentCount | integer | Current consumers |
| consumersHighCount | integer | High watermark of consumers |
| consumersTotal | integer | Total consumers created |
| bytesCurrentCount | integer | Current total bytes |
| bytesPendingCount | integer | Pending bytes |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JMSDestinationMetrics",
"title": "JMSDestinationMetrics",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Destination name"
},
"type": {
"type": "string",
"description": "Destination type",
"enum": [
"Queue",
"Topic"
]
},
"messagesCurrentCount": {
"type": "integer",
"format": "int64",
"description": "Current messages in the destination"
},
"messagesPendingCount": {
"type": "integer",
"format": "int64",
"description": "Pending messages"
},
"messagesHighCount": {
"type": "integer",
"format": "int64",
"description": "High watermark of messages"
},
"messagesReceivedCount": {
"type": "integer",
"format": "int64",
"description": "Total received messages"
},
"consumersCurrentCount": {
"type": "integer",
"format": "int64",
"description": "Current consumers"
},
"consumersHighCount": {
"type": "integer",
"format": "int64",
"description": "High watermark of consumers"
},
"consumersTotal": {
"type": "integer",
"format": "int64",
"description": "Total consumers created"
},
"bytesCurrentCount": {
"type": "integer",
"format": "int64",
"description": "Current total bytes"
},
"bytesPendingCount": {
"type": "integer",
"format": "int64",
"description": "Pending bytes"
}
}
}