summaryrefslogtreecommitdiff
path: root/specs/management-schema.xml
blob: 678c1a6476ffe01a86550a1cba38cf951a99f6db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
<schema package="org.apache.qpid.broker">

<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
-->

  <!-- Type information:

       Numeric types with "_wm" suffix are watermarked numbers.  These are compound
       values containing a current value, and a low and high water mark for the reporting
       interval.  The low and high water marks are set to the current value at the
       beginning of each interval and track the minimum and maximum values of the statistic
       over the interval respectively.

       Access rights for configuration elements:

           RO => Read Only
           RC => Read/Create, can be set at create time only, read-only thereafter
           RW => Read/Write

           If access rights are omitted for a property, they are assumed to be RO.

  -->

  <!-- Questions:  Does C++ broker round-robin dests on queues? -->

  <!--
  ===============================================================
  System
  ===============================================================
  -->
  <class name="System">
    <property name="systemId" index="y" type="uuid" access="RC"/>

    <property name="osName"   type="sstr" access="RO" desc="Operating System Name"/>
    <property name="nodeName" type="sstr" access="RO" desc="Node Name"/>
    <property name="release"  type="sstr" access="RO"/>
    <property name="version"  type="sstr" access="RO"/>
    <property name="machine"  type="sstr" access="RO"/>

  </class>

  <!--
  ===============================================================
  Memory
  ===============================================================
  -->
  <class name="Memory">
    <property name="name"            type="sstr"  access="RC" index="y" desc="Index for the broker at this agent"/>
    <property name="malloc_arena"    type="uint64" access="RO" optional="y" desc="Total size of memory allocated with `sbrk' by `malloc', in bytes"/>
    <property name="malloc_ordblks"  type="uint64" access="RO" optional="y" desc="The number of chunks not in use"/>
    <property name="malloc_hblks"    type="uint64" access="RO" optional="y" desc="Total number of chunks allocated with `mmap'"/>
    <property name="malloc_hblkhd"   type="uint64" access="RO" optional="y" desc="Total size of memory allocated with `mmap', in bytes"/>
    <property name="malloc_uordblks" type="uint64" access="RO" optional="y" desc="Total size of memory occupied by chunks handed out by `malloc'"/>
    <property name="malloc_fordblks" type="uint64" access="RO" optional="y" desc="Total size of memory occupied by free (not in use) chunks"/>
    <property name="malloc_keepcost" type="uint64" access="RO" optional="y" desc="The size of the top-most releasable chunk that normally borders the end of the heap"/>
  </class>

  <!--
  ===============================================================
  Broker
  ===============================================================
  -->
  <class name="Broker">
    <property name="name"             type="sstr"   access="RC" index="y" desc="Index for the broker at this agent"/>
    <property name="systemRef"        type="objId"  references="System" access="RO" desc="System ID" parentRef="y"/>
    <property name="port"             type="uint16" access="RO" desc="TCP Port for AMQP Service"/>
    <property name="workerThreads"    type="uint16" access="RO" desc="Thread pool size"/>
    <property name="maxConns"         type="uint16" access="RO" desc="Maximum allowed connections"/>
    <property name="connBacklog"      type="uint16" access="RO" desc="Connection backlog limit for listening socket"/>
    <property name="stagingThreshold" type="uint32" access="RO" desc="Broker stages messages over this size to disk"/>
    <property name="mgmtPublish"      type="bool"   access="RO" desc="Broker's management agent sends unsolicited data on the publish interval"/>
    <property name="mgmtPubInterval"  type="uint16" access="RW" unit="second" min="1" desc="Interval for management broadcasts"/>
    <property name="version"          type="sstr"   access="RO" desc="Running software version"/>
    <property name="dataDir"          type="lstr"   access="RO" optional="y" desc="Persistent configuration storage location"/>
    <statistic name="uptime" type="deltaTime"/>

    <statistic name="queueCount"          type="count64" unit="queue"   desc="Number of queues in the broker"/>
    <statistic name="msgTotalEnqueues"    type="count64" unit="message" desc="Total messages enqueued to broker"/>
    <statistic name="msgTotalDequeues"    type="count64" unit="message" desc="Total messages dequeued from broker"/>
    <statistic name="byteTotalEnqueues"   type="count64" unit="octet"   desc="Total bytes enqueued to broker"/>
    <statistic name="byteTotalDequeues"   type="count64" unit="octet"   desc="Total bytes dequeued from broker"/>
    <statistic name="msgDepth"            type="count64" unit="message" desc="Current number of messages on queues in broker" assign="msgTotalEnqueues - msgTotalDequeues"/>
    <statistic name="byteDepth"           type="count64" unit="octet"   desc="Current number of bytes on queues in broker"    assign="byteTotalEnqueues - byteTotalDequeues"/>
    <statistic name="msgPersistEnqueues"  type="count64" unit="message" desc="Total persistent messages enqueued to broker"/>
    <statistic name="msgPersistDequeues"  type="count64" unit="message" desc="Total persistent messages dequeued from broker"/>
    <statistic name="bytePersistEnqueues" type="count64" unit="octet"   desc="Total persistent bytes enqueued to broker"/>
    <statistic name="bytePersistDequeues" type="count64" unit="octet"   desc="Total persistent bytes dequeued from broker"/>
    <statistic name="msgTxnEnqueues"      type="count64" unit="message" desc="Total transactional messages enqueued to broker"/>
    <statistic name="msgTxnDequeues"      type="count64" unit="message" desc="Total transactional messages dequeued from broker"/>
    <statistic name="byteTxnEnqueues"     type="count64" unit="octet"   desc="Total transactional bytes enqueued to broker"/>
    <statistic name="byteTxnDequeues"     type="count64" unit="octet"   desc="Total transactional bytes dequeued from broker"/>
    <statistic name="msgFtdEnqueues"      type="count64" unit="message" desc="Total message bodies released from memory and flowed-to-disk on broker"/>
    <statistic name="msgFtdDequeues"      type="count64" unit="message" desc="Total message bodies dequeued from the broker having been flowed-to-disk"/>
    <statistic name="byteFtdEnqueues"     type="count64" unit="octet"   desc="Total bytes released from memory and flowed-to-disk on broker"/>
    <statistic name="byteFtdDequeues"     type="count64" unit="octet"   desc="Total bytes dequeued from the broker having been flowed-to-disk"/>
    <statistic name="msgFtdDepth"         type="count64" unit="message" desc="Current number of messages flowed-to-disk" assign="msgFtdEnqueues - msgFtdDequeues"/>
    <statistic name="byteFtdDepth"        type="count64" unit="octet"   desc="Current number of bytes flowed-to-disk"    assign="byteFtdEnqueues - byteFtdDequeues"/>
    <statistic name="releases"            type="count64" unit="message" desc="Acquired messages reinserted into the queue"/>
    <statistic name="acquires"            type="count64" unit="message" desc="Messages acquired from the queue"/>
    <statistic name="discardsNoRoute"     type="count64" unit="message" desc="Messages discarded due to no-route from exchange"/>
    <statistic name="discardsTtl"         type="count64" unit="message" desc="Messages discarded due to TTL expiration"/>
    <statistic name="discardsRing"        type="count64" unit="message" desc="Messages discarded due to ring-queue overflow"/>
    <statistic name="discardsLvq"         type="count64" unit="message" desc="Messages discarded due to LVQ insert"/>
    <statistic name="discardsOverflow"    type="count64" unit="message" desc="Messages discarded due to reject-policy overflow"/>
    <statistic name="discardsSubscriber"  type="count64" unit="message" desc="Messages discarded due to subscriber reject"/>
    <statistic name="discardsPurge"       type="count64" unit="message" desc="Messages discarded due to management purge"/>
    <statistic name="reroutes"            type="count64" unit="message" desc="Messages dequeued to management re-route"/>
    <statistic name="abandoned"           type="count64" unit="message" desc="Messages left in a deleted queue"/>
    <statistic name="abandonedViaAlt"     type="count64" unit="message" desc="Messages routed to alternate exchange from a deleted queue"/>

    <method name="echo" desc="Request a response to test the path to the management broker">
      <arg name="sequence" dir="IO" type="uint32"/>
      <arg name="body"     dir="IO" type="lstr"/>
    </method>

    <method name="connect" desc="Establish a connection to another broker">
      <arg name="host"          dir="I" type="sstr"/>
      <arg name="port"          dir="I" type="uint32"/>
      <arg name="durable"       dir="I" type="bool"/>
      <arg name="authMechanism" dir="I" type="sstr"/>
      <arg name="username"      dir="I" type="sstr"/>
      <arg name="password"      dir="I" type="sstr"/>
      <arg name="transport"     dir="I" type="sstr"/>
    </method>

    <method name="queueMoveMessages" desc="Move messages from one queue to another">
      <arg name="srcQueue"          dir="I" type="sstr" desc="Source queue"/>
      <arg name="destQueue"         dir="I" type="sstr" desc="Destination queue"/>
      <arg name="qty"               dir="I" type="uint32" desc="# of messages to move. 0 means all messages"/>
      <arg name="filter"  dir="I" type="map" desc="if specified, move only those messages matching this filter"/>
    </method>

    <method name="setLogLevel" desc="Set the log level">
      <arg name="level"     dir="I" type="sstr"/>
    </method>

    <method name="getLogLevel" desc="Get the current log level">
      <arg name="level"     dir="O" type="sstr"/>
    </method>

   <method name="getTimestampConfig" desc="Get the message timestamping configuration">
      <arg name="receive" dir="O" type="bool"  desc="True if received messages are timestamped."/>
    </method>

    <method name="setTimestampConfig" desc="Set the message timestamping configuration">
      <arg name="receive"  dir="I" type="bool" desc="Set true to enable timestamping received messages."/>
    </method>

    <method name="create" desc="Create an object of the specified type">
      <arg name="type" dir="I" type="sstr" desc="The type of object to create"/>
      <arg name="name" dir="I" type="sstr" desc="The name of the object to create"/>
      <arg name="properties" dir="I" type="map" desc="Type specific object properties"/>
      <arg name="strict" dir="I" type="bool" desc="If specified, treat unrecognised object properties as an error"/>
    </method>

    <method name="delete" desc="Delete an object of the specified type">
      <arg name="type" dir="I" type="sstr" desc="The type of object to delete"/>
      <arg name="name" dir="I" type="sstr" desc="The name of the object to delete"/>
      <arg name="options" dir="I" type="map" desc="Type specific object options for deletion"/>
    </method>

    <method name="query" desc="Query the current state of an object.">
      <arg name="type" dir="I" type="sstr" desc="The type of object to query."/>
      <arg name="name" dir="I" type="sstr" desc="The name of the object to query"/>
      <arg name="results" dir="O" type="map"  desc="A snapshot of the object's state."/>
    </method>

    <method name="getLogHiresTimestamp" desc="Get the high resolution timestamp in logs">
      <arg name="logHires" dir="O" type="bool"  desc="True if high resolution timestamp in logs is enabled."/>
    </method>

    <method name="setLogHiresTimestamp" desc="Set the high resolution timestamp in logs">
      <arg name="logHires" dir="I" type="bool"  desc="True to enable enable high resolution timestamp in logs."/>
    </method>


  </class>

  <!--
  ===============================================================
  Management Agent
  ===============================================================
  -->
  <class name="Agent">
    <property name="connectionRef" type="objId"  references="Connection" access="RO" index="y"/>
    <property name="label"         type="sstr"   access="RO"           desc="Label for agent"/>
    <property name="registeredTo"  type="objId"  references="Broker" access="RO" desc="Broker agent is registered to"/>
    <property name="systemId"      type="uuid"   access="RO"           desc="Identifier of system where agent resides"/>
    <property name="brokerBank"    type="uint32" access="RO"           desc="Assigned object-id broker bank"/>
    <property name="agentBank"     type="uint32" access="RO"           desc="Assigned object-id agent bank"/>
  </class>

  <!--
  ===============================================================
  Virtual Host
  ===============================================================
  -->
  <class name="Vhost">
    <property name="brokerRef"     type="objId" references="Broker" access="RC" index="y" parentRef="y"/>
    <property name="name"          type="sstr"  access="RC" index="y"/>
    <property name="federationTag" type="sstr"  access="RO"/>
  </class>

  <!--
  ===============================================================
  Queue
  ===============================================================
  -->
  <class name="Queue">
    <property name="vhostRef"   type="objId" references="Vhost" access="RC" index="y" parentRef="y"/>
    <property name="name"       type="sstr"  access="RC" index="y"/>

    <property name="durable"     type="bool"  access="RC"/>
    <property name="autoDelete"  type="bool"  access="RC"/>
    <property name="exclusive"   type="bool"  access="RO"/>
    <property name="arguments"   type="map"   access="RO" desc="Arguments supplied in queue.declare"/>
    <property name="altExchange" type="objId" references="Exchange" access="RO" optional="y"/>

    <statistic name="msgTotalEnqueues"    type="count64"  unit="message"     desc="Total messages enqueued"/>
    <statistic name="msgTotalDequeues"    type="count64"  unit="message"     desc="Total messages dequeued"/>
    <statistic name="msgTxnEnqueues"      type="count64"  unit="message"     desc="Transactional messages enqueued"/>
    <statistic name="msgTxnDequeues"      type="count64"  unit="message"     desc="Transactional messages dequeued"/>
    <statistic name="msgPersistEnqueues"  type="count64"  unit="message"     desc="Persistent messages enqueued"/>
    <statistic name="msgPersistDequeues"  type="count64"  unit="message"     desc="Persistent messages dequeued"/>
    <statistic name="msgDepth"            type="count64"  unit="message"     desc="Current size of queue in messages" assign="msgTotalEnqueues - msgTotalDequeues"/>
    <statistic name="byteDepth"           type="count64"  unit="octet"       desc="Current size of queue in bytes"    assign="byteTotalEnqueues - byteTotalDequeues"/>
    <statistic name="byteTotalEnqueues"   type="count64"  unit="octet"       desc="Total messages enqueued"/>
    <statistic name="byteTotalDequeues"   type="count64"  unit="octet"       desc="Total messages dequeued"/>
    <statistic name="byteTxnEnqueues"     type="count64"  unit="octet"       desc="Transactional messages enqueued"/>
    <statistic name="byteTxnDequeues"     type="count64"  unit="octet"       desc="Transactional messages dequeued"/>
    <statistic name="bytePersistEnqueues" type="count64"  unit="octet"       desc="Persistent messages enqueued"/>
    <statistic name="bytePersistDequeues" type="count64"  unit="octet"       desc="Persistent messages dequeued"/>

    <!-- Flow-to-disk Statistics -->

    <statistic name="msgFtdEnqueues"      type="count64"  unit="message"     desc="Total message bodies released from memory and flowed-to-disk on broker"/>
    <statistic name="msgFtdDequeues"      type="count64"  unit="message"     desc="Total message bodies dequeued from the broker having been flowed-to-disk"/>
    <statistic name="byteFtdEnqueues"     type="count64"  unit="octet"       desc="Total bytes released from memory and flowed-to-disk on broker"/>
    <statistic name="byteFtdDequeues"     type="count64"  unit="octet"       desc="Total bytes dequeued from the broker having been flowed-to-disk"/>
    <statistic name="msgFtdDepth"         type="count64"  unit="message"     desc="Current number of messages flowed-to-disk" assign="msgFtdEnqueues - msgFtdDequeues"/>
    <statistic name="byteFtdDepth"        type="count64"  unit="octet"       desc="Current number of bytes flowed-to-disk"    assign="byteFtdEnqueues - byteFtdDequeues"/>

    <!-- Acquire and Release Statistics - These do not affect msgDepth since msgDepth includes acquired-but-not-completed messages. -->

    <statistic name="releases"            type="count64"  unit="message"     desc="Acquired messages reinserted into the queue"/>
    <statistic name="acquires"            type="count64"  unit="message"     desc="Messages acquired from the queue"/>

    <!-- Dequeue Details - all of these are included in msgTotalDequeues -->

    <statistic name="discardsTtl"         type="count64"  unit="message"     desc="Messages discarded due to TTL expiration"/>
    <statistic name="discardsRing"        type="count64"  unit="message"     desc="Messages discarded due to ring-queue overflow"/>
    <statistic name="discardsLvq"         type="count64"  unit="message"     desc="Messages discarded due to LVQ insert"/>
    <statistic name="discardsOverflow"    type="count64"  unit="message"     desc="Messages discarded due to reject-policy overflow"/>
    <statistic name="discardsSubscriber"  type="count64"  unit="message"     desc="Messages discarded due to subscriber reject"/>
    <statistic name="discardsPurge"       type="count64"  unit="message"     desc="Messages discarded due to management purge"/>
    <statistic name="reroutes"            type="count64"  unit="message"     desc="Messages dequeued to management re-route"/>

    <statistic name="consumerCount"       type="hilo32"   unit="consumer"    desc="Current consumers on queue"/>
    <statistic name="bindingCount"        type="hilo32"   unit="binding"     desc="Current bindings"/>
    <statistic name="unackedMessages"     type="hilo32"   unit="message"     desc="Messages consumed but not yet acked"/>
    <statistic name="messageLatency"      type="mmaTime"  unit="nanosecond"  desc="Broker latency through this queue"/>
    <statistic name="flowStopped"         type="bool"     desc="Flow control active."/>
    <statistic name="flowStoppedCount"    type="count32"  desc="Number of times flow control was activated for this queue"/>

    <method name="purge" desc="Discard all or some messages on a queue">
      <arg name="request" dir="I" type="uint32" desc="0 for all messages or n>0 for n messages"/>
      <arg name="filter"  dir="I" type="map"    desc="if specified, purge only those messages matching this filter"/>
    </method>

    <method name="reroute" desc="Remove all or some messages on this queue and route them to an exchange">
      <arg name="request"        dir="I" type="uint32" desc="0 for all messages or n>0 for n messages"/>
      <arg name="useAltExchange" dir="I" type="bool"   desc="Iff true, use the queue's configured alternate exchange; iff false, use exchange named in the 'exchange' argument"/>
      <arg name="exchange"       dir="I" type="sstr"   desc="Name of the exchange to route the messages through"/>
      <arg name="filter"  dir="I" type="map"           desc="if specified, reroute only those messages matching this filter"/>
    </method>
  </class>

  <!--
  ===============================================================
  Exchange
  ===============================================================
  -->
  <class name="Exchange">
    <property name="vhostRef"    type="objId" references="Vhost" access="RC" index="y" parentRef="y"/>
    <property name="name"        type="sstr"  access="RC" index="y"/>
    <property name="type"        type="sstr"  access="RO"/>
    <property name="durable"     type="bool"  access="RO"/>
    <property name="autoDelete"  type="bool"  access="RO"/>
    <property name="altExchange" type="objId" references="Exchange" access="RO" optional="y"/>
    <property name="arguments"   type="map"   access="RO" desc="Arguments supplied in exchange.declare"/>

    <statistic name="producerCount" type="hilo32"  desc="Current producers on exchange"/>
    <statistic name="bindingCount"  type="hilo32"  desc="Current bindings"/>
    <statistic name="msgReceives"   type="count64" desc="Total messages received"/>
    <statistic name="msgDrops"      type="count64" desc="Total messages dropped (no matching key)"/>
    <statistic name="msgRoutes"     type="count64" desc="Total routed messages"/>
    <statistic name="byteReceives"  type="count64" desc="Total bytes received"/>
    <statistic name="byteDrops"     type="count64" desc="Total bytes dropped (no matching key)"/>
    <statistic name="byteRoutes"    type="count64" desc="Total routed bytes"/>
  </class>

  <!--
  ===============================================================
  Binding
  ===============================================================
  -->
  <class name="Binding">
    <property name="exchangeRef" type="objId" references="Exchange" access="RC" index="y" parentRef="y"/>
    <property name="queueRef"    type="objId" references="Queue"    access="RC" index="y"/>
    <property name="bindingKey"  type="lstr"  access="RC" index="y"/>
    <property name="arguments"   type="map"   access="RC"/>
    <property name="origin"      type="sstr"  access="RO" optional="y"/>

    <statistic name="msgMatched" type="count64"/>
  </class>

  <!--
  ===============================================================
  Subscription
  ===============================================================
  -->
  <class name="Subscription">
    <property name="sessionRef"     type="objId"    references="Session" access="RC" index="y" parentRef="y"/>
    <property name="queueRef"       type="objId"    references="Queue"   access="RC" index="y"/>
    <property name="name"           type="sstr"     access="RC" index="y"/>
    <property name="browsing"       type="bool"     access="RC"/>
    <property name="acknowledged"   type="bool"     access="RC"/>
    <property name="exclusive"      type="bool"     access="RC"/>
    <property name="creditMode"     type="sstr"     access="RO" desc="WINDOW or CREDIT"/>
    <property name="arguments"      type="map"      access="RC"/>
    <statistic name="delivered"     type="count64"  unit="message" desc="Messages delivered"/>
  </class>

  <!--
  ===============================================================
  Connection
  ===============================================================
  -->
  <class name="Connection">
    <property name="vhostRef" type="objId"  references="Vhost" access="RC" index="y" parentRef="y"/>
    <property name="address"  type="sstr"   access="RC" index="y"/>
    <property name="incoming" type="bool"   access="RC"/>
    <property name="SystemConnection"   type="bool"   access="RC" desc="Infrastructure/ Inter-system connection (Cluster, Federation, ...)"/>
    <property name="userProxyAuth"      type="bool"   access="RO" desc="Authorization to proxy for users not on broker"/>
    <property name="federationLink"     type="bool"   access="RO" desc="Is this a federation link"/>
    <property name="authIdentity"       type="sstr"   access="RO" desc="authId of connection if authentication enabled"/>
    <property name="remoteProcessName"  type="lstr"   access="RO" optional="y" desc="Name of executable running as remote client"/>
    <property name="remotePid"          type="uint32" access="RO" optional="y" desc="Process ID of remote client"/>
    <property name="remoteParentPid"    type="uint32" access="RO" optional="y" desc="Parent Process ID of remote client"/>
    <property name="shadow"             type="bool"   access="RO" desc="True for shadow connections"/>
    <property name="saslMechanism"      type="sstr"   access="RO" desc="SASL mechanism"/>
    <property name="saslSsf"            type="uint16"   access="RO" desc="SASL security strength factor"/>
    <property name="remoteProperties"   type="map"    access="RO" desc="optional map of identifying information sent by the remote"/>
    <property name="protocol"           type="sstr"   access="RC" desc="protocol in use"/>
    <statistic name="closing"          type="bool" desc="This client is closing by management request"/>
    <statistic name="framesFromClient" type="count64"/>
    <statistic name="framesToClient"   type="count64"/>
    <statistic name="bytesFromClient"  type="count64"/>
    <statistic name="bytesToClient"    type="count64"/>
    <statistic name="msgsFromClient"  type="count64"/>
    <statistic name="msgsToClient"    type="count64"/>

    <method name="close"/>
  </class>

  <!--
  ===============================================================
  Link
  ===============================================================
  -->
  <class name="Link">

    This class represents an inter-broker connection.

    <property name="vhostRef"  type="objId"  references="Vhost" access="RC" index="y" parentRef="y"/>
    <property name="name"      type="sstr"   access="RC" index="y"/>
    <property name="host"      type="sstr"   access="RO"/>
    <property name="port"      type="uint16" access="RO"/>
    <property name="transport" type="sstr"   access="RO"/>
    <property name="durable"   type="bool"   access="RC"/>
    <property name="connectionRef" type="objId" references="Connection" access="RO"/>

    <statistic name="state"       type="sstr" desc="Operational state of the link"/>
    <statistic name="lastError"   type="lstr" desc="Reason link is not operational"/>

    <method name="close"/>

    <method name="bridge" desc="Bridge messages over the link">
      <arg name="durable"     dir="I" type="bool"/>
      <arg name="src"         dir="I" type="sstr"/>
      <arg name="dest"        dir="I" type="sstr"/>
      <arg name="key"         dir="I" type="lstr"/>
      <arg name="tag"         dir="I" type="sstr"/>
      <arg name="excludes"    dir="I" type="sstr"/>
      <arg name="srcIsQueue"  dir="I" type="bool"/>
      <arg name="srcIsLocal"  dir="I" type="bool"/>
      <arg name="dynamic"     dir="I" type="bool"/>
      <arg name="sync"        dir="I" type="uint16"/>
    </method>
  </class>


  <!--
  ===============================================================
  Bridge
  ===============================================================
  -->
  <class name="Bridge">
    <property name="linkRef"     type="objId"  references="Link" access="RC" index="y" parentRef="y"/>
    <property name="name"        type="sstr"   access="RC"  index="y"/>
    <property name="channelId"   type="uint16" access="RO"/>
    <property name="durable"     type="bool"   access="RC"/>
    <property name="src"         type="sstr"   access="RC"/>
    <property name="dest"        type="sstr"   access="RC"/>
    <property name="key"         type="lstr"   access="RC"/>
    <property name="srcIsQueue"  type="bool"   access="RC"/>
    <property name="srcIsLocal"  type="bool"   access="RC"/>
    <property name="tag"         type="sstr"   access="RC"/>
    <property name="excludes"    type="sstr"   access="RC"/>
    <property name="dynamic"     type="bool"   access="RC"/>
    <property name="sync"        type="uint16" access="RC"/>
    <method name="close"/>
  </class>


  <!--
  ===============================================================
  Session
  ===============================================================
  -->
  <class name="Session">
    <property name="vhostRef"         type="objId"   references="Vhost" access="RC" index="y" parentRef="y"/>
    <property name="name"             type="sstr"    access="RC" index="y"/>
    <property name="channelId"        type="uint16"  access="RO"/>
    <property name="connectionRef"    type="objId"   references="Connection" access="RO"/>
    <property name="detachedLifespan" type="uint32"  access="RO" unit="second"/>
    <property name="attached"         type="bool"    access="RO"/>
    <property name="expireTime"       type="absTime" access="RO" optional="y"/>
    <property name="maxClientRate"    type="uint32"  access="RO" unit="msgs/sec" optional="y"/>

    <statistic name="unackedMessages" type="uint64" unit="message" desc="Unacknowledged messages in the session"/>

    <statistic name="TxnStarts"    type="count64"  unit="transaction" desc="Total transactions started "/>
    <statistic name="TxnCommits"   type="count64"  unit="transaction" desc="Total transactions committed"/>
    <statistic name="TxnRejects"   type="count64"  unit="transaction" desc="Total transactions rejected"/>
    <statistic name="TxnCount"     type="count32"  unit="transaction" desc="Current pending transactions"/>

    <statistic name="clientCredit" type="count32" unit="message" desc="Client message credit"/>

    <method name="solicitAck"/>
    <method name="detach"/>
    <method name="resetLifespan"/>
    <method name="close"/>
  </class>

  <!--
  ===============================================================
  ManagementSetupState
  ===============================================================

     This thing is used during cluster recovery operations (and maybe
  eventually elsewhere) to transmit assorted state from one broker to
  another.  At present, the two data propagated are the object number
  counter and boot sequence, both of which are used for creating
  object ids for newly-created objects.

    -->
  <class name="ManagementSetupState">
    <!-- for reasons that aren't clear (to me, anyhow) you have to say
    access="RO" to get accessor methods defined.  RC or RW don't do
    it.  Probably this is documented someplace, but I couldn't find
    it. -jrd -->
    <property name="objectNum" type="uint64" access="RO"/>
    <property name="bootSequence" type="uint16" access="RO"/>
  </class>

  <eventArguments>
    <arg name="altEx"   type="sstr"   desc="Name of the alternate exchange"/>
    <arg name="args"    type="map"    desc="Supplemental arguments or parameters supplied"/>
    <arg name="autoDel" type="bool"   desc="Created object is automatically deleted when no longer in use"/>
    <arg name="dest"    type="sstr"   desc="Destination tag for a subscription"/>
    <arg name="disp"    type="sstr"   desc="Disposition of a declaration: 'created' if object was created, 'existing' if object already existed"/>
    <arg name="durable" type="bool"   desc="Created object is durable"/>
    <arg name="exName"  type="sstr"   desc="Name of an exchange"/>
    <arg name="exType"  type="sstr"   desc="Type of an exchange"/>
    <arg name="excl"    type="bool"   desc="Created object is exclusive for the use of the owner only"/>
    <arg name="key"     type="lstr"   desc="Key text used for routing or binding"/>
    <arg name="qName"   type="sstr"   desc="Name of a queue"/>
    <arg name="reason"  type="lstr"   desc="Reason for a failure"/>
    <arg name="rhost"   type="sstr"   desc="Address (i.e. DNS name, IP address, etc.) of a remotely connected host"/>
    <arg name="user"    type="sstr"   desc="Authentication identity"/>
    <arg name="msgDepth" type="count64" desc="Current size of queue in messages"/>
    <arg name="byteDepth" type="count64" desc="Current size of queue in bytes"/>
    <arg name="properties" type="map" desc="optional identifying information sent by the remote"/>
  </eventArguments>

  <event name="clientConnect"     sev="inform" args="rhost, user, properties"/>
  <event name="clientConnectFail" sev="warn"   args="rhost, user, reason, properties"/>
  <event name="clientDisconnect"  sev="inform" args="rhost, user, properties"/>
  <event name="brokerLinkUp"      sev="inform" args="rhost"/>
  <event name="brokerLinkDown"    sev="warn"   args="rhost"/>
  <event name="queueDeclare"      sev="inform" args="rhost, user, qName, durable, excl, autoDel, altEx, args, disp"/>
  <event name="queueDelete"       sev="inform" args="rhost, user, qName"/>
  <event name="exchangeDeclare"   sev="inform" args="rhost, user, exName, exType, altEx, durable, autoDel, args, disp"/>
  <event name="exchangeDelete"    sev="inform" args="rhost, user, exName"/>
  <event name="bind"              sev="inform" args="rhost, user, exName, qName, key, args"/>
  <event name="unbind"            sev="inform" args="rhost, user, exName, qName, key"/>
  <event name="subscribe"         sev="inform" args="rhost, user, qName, dest, excl, args"/>
  <event name="unsubscribe"       sev="inform" args="rhost, user, dest"/>
  <event name="queueThresholdExceeded"       sev="warn" args="qName, msgDepth, byteDepth"/>
</schema>