diff options
Diffstat (limited to 'docs/rabbitmqctl.1.pod')
-rw-r--r-- | docs/rabbitmqctl.1.pod | 181 |
1 files changed, 110 insertions, 71 deletions
diff --git a/docs/rabbitmqctl.1.pod b/docs/rabbitmqctl.1.pod index 42156896..013062b4 100644 --- a/docs/rabbitmqctl.1.pod +++ b/docs/rabbitmqctl.1.pod @@ -142,49 +142,63 @@ list_queues [-p I<vhostpath>] [I<queueinfoitem> ...] =head3 Queue information items +=for xhtml <a id="queue-information-items"/> + =over 4 -name - URL-encoded name of the queue +=item name + +URL-encoded name of the queue + +=item durable + +whether the queue survives server restarts + +=item auto_delete -durable - whether the queue survives server restarts +whether the queue will be deleted when no longer used -auto_delete - whether the queue will be deleted when no longer used +=item arguments -arguments - queue arguments +queue arguments -node - node on which the process associated with the queue resides +=item node -messages_ready - number of messages ready to be delivered to clients +node on which the process associated with the queue resides -messages_unacknowledged - number of messages delivered to clients but not yet - acknowledged +=item messages_ready -messages_uncommitted - number of messages published in as yet uncommitted transactions +number of messages ready to be delivered to clients -messages - sum of ready, unacknowledged and uncommitted messages +=item messages_unacknowledged -acks_uncommitted - number of acknowledgements received in as yet uncommitted - transactions +number of messages delivered to clients but not yet acknowledged -consumers - number of consumers +=item messages_uncommitted +number of messages published in as yet uncommitted transactions + +=item messages + +sum of ready, unacknowledged and uncommitted messages + +=item acks_uncommitted + +number of acknowledgements received in as yet uncommitted transactions - number of transactions -memory - bytes of memory consumed by the Erlang process for the queue, - including stack, heap and internal structures +=item consumers + +number of consumers + +=item transactions + +number of transactions + +=item memory + +bytes of memory consumed by the Erlang process for the queue, +including stack, heap and internal structures =back @@ -195,22 +209,29 @@ list_exchanges [-p I<vhostpath>] [I<exchangeinfoitem> ...] =head3 Exchange information items +=for xhtml <a id="exchange-information-items"/> + =over 4 -name - URL-encoded name of the exchange +=item name + +URL-encoded name of the exchange + +=item type + +exchange type (B<direct>, B<topic>, B<fanout>, or B<headers>) + +=item durable -type - exchange type (B<direct>, B<topic>, B<fanout>, or B<headers>) +whether the exchange survives server restarts -durable - whether the exchange survives server restarts +=item auto_delete -auto_delete - whether the exchange is deleted when no longer used +whether the exchange is deleted when no longer used -arguments - exchange arguments +=item arguments + +exchange arguments =back @@ -224,56 +245,74 @@ list_connections [I<connectioninfoitem> ...] =head3 Connection information items +=for xhtml <a id="connection-information-items"/> + =over 4 -node - node on which the process associated with the connection resides +=item node + +node on which the process associated with the connection resides + +=item address + +server IP number + +=item port + +server port + +=item peer_address + +peer address + +=item peer_port + +peer port + +=item state + +connection state (B<pre-init>, B<starting>, B<tuning>, B<opening>, +B<running>, B<closing>, B<closed>) + +=item channels + +number of channels using the connection + +=item user + +username associated with the connection + +=item vhost -address - server IP number +URL-encoded virtual host -port - server port +=item timeout -peer_address - peer address +connection timeout -peer_port - peer port +=item frame_max -state - connection state (B<pre-init>, B<starting>, B<tuning>, B<opening>, - B<running>, B<closing>, B<closed>) +maximum frame size (bytes) -channels - number of channels using the connection +=item recv_oct -user - username associated with the connection +octets received -vhost - URL-encoded virtual host +=item recv_cnt -timeout - connection timeout +packets received -frame_max - maximum frame size (bytes) +=item send_oct -recv_oct - octets received +octets sent -recv_cnt - packets received +=item send_cnt -send_oct - octets sent +packets sent -send_cnt - packets sent +=item send_pend -send_pend - send queue size +send queue size =back |