Apache ServiceMix · JSON Structure

Apache Servicemix Queue Structure

ActiveMQ message queue

Type: object Properties: 5
Enterprise IntegrationESBIntegrationMessagingOSGiApacheOpen Source

Queue is a JSON Structure definition published by Apache ServiceMix, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name pendingQueueSize consumerCount enqueueCount dequeueCount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-servicemix/refs/heads/main/json-structure/apache-servicemix-queue-structure.json",
  "description": "ActiveMQ message queue",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Queue name"
    },
    "pendingQueueSize": {
      "type": "int32",
      "description": "Number of pending messages"
    },
    "consumerCount": {
      "type": "int32",
      "description": "Number of consumers"
    },
    "enqueueCount": {
      "type": "int64",
      "description": "Total enqueued messages"
    },
    "dequeueCount": {
      "type": "int64",
      "description": "Total dequeued messages"
    }
  },
  "name": "Queue"
}