Github user kgiusti commented on a diff in the pull request:
https://github.com/apache/qpid-dispatch/pull/244#discussion_r163279263
--- Diff: python/qpid_dispatch/management/qdrouter.json ---
@@ -1126,6 +1126,106 @@
}
},
+ "router.config.exchange": {
+ "description":"[EXPERIMENTAL] Defines a topic exchange.",
+ "extends": "configurationEntity",
+ "operations": ["CREATE", "DELETE"],
+ "attributes": {
+ "address": {
+ "description": "The address of the exchange.",
+ "type": "string",
+ "create": true,
+ "required": true
+ },
+ "phase": {
+ "type": "integer",
+ "description": "The address phase for the exchange.
Defaults to '0'.",
+ "create": true,
+ "required": false
+ },
+ "alternate": {
+ "description": "The address to forward the message to
if no bindings are matched.",
+ "type": "string",
+ "create": true,
+ "required": false
+ },
+ "alternatePhase": {
+ "type": "integer",
+ "description": "The address phase for the alternate
address. Defaults to '0'.",
+ "create": true,
+ "required": false
+ },
+ "matchMethod": {
+ "description": "Key matching algorithm used. '0-10'
uses the legacy AMQP topic exchange wildcard match method as described in the
0-10 draft. 'mqtt' uses the MQTT topic filter wildcard match method.",
+ "type": ["0-10", "mqtt"],
+ "default": "0-10",
+ "required": false,
+ "create": true
+ },
+ "bindingCount": {
+ "description": "The number of bindings associated with
this exchange.",
+ "type": "integer",
+ "create": false
+ },
+ "deliveriesReceived": {
+ "description": "The total number of deliveries
received by this exchange.",
+ "type": "integer",
+ "create": false
+ },
+ "deliveriesDropped": {
+ "description": "The total number of deliveries dropped
due to the lack of an outgoing subscription.",
+ "type": "integer",
+ "create": false
+ },
+ "deliveriesForwarded": {
+ "description": "The total number of deliveries
forwarded via matched bindings.",
--- End diff --
include alternate in description
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]