diff options
| author | Matthias Radestock <matthias@lshift.net> | 2010-02-01 22:58:09 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2010-02-01 22:58:09 +0000 |
| commit | 209e5914c0329c51efa9463bf5806641344624fc (patch) | |
| tree | 1d444bec252d899b5fb1c1b575cdda77d0f40b03 /docs | |
| parent | eafef585eb6c367d99dafcccb605e517e7c60839 (diff) | |
| download | rabbitmq-server-git-209e5914c0329c51efa9463bf5806641344624fc.tar.gz | |
add 'rabbitmqctl list_channels' command
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/rabbitmqctl.1.pod | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/docs/rabbitmqctl.1.pod b/docs/rabbitmqctl.1.pod index 5255be28a0..e768ae764c 100644 --- a/docs/rabbitmqctl.1.pod +++ b/docs/rabbitmqctl.1.pod @@ -367,6 +367,62 @@ send queue size =back +=over + +=item list_channels [I<channelinfoitem> ...] + +List channel information. Each line printed describes a channel, +I<channelinfoitem> values separated by tab characters. If no +I<channelinfoitem>s are specified then I<pid>, I<user>, +I<transactional>, I<consumer_count>, and I<messages_unacknowledged> +are assumed. + +The list includes channels which are part of ordinary AMQP connections +(as listed by list_connections) and channels created by various +plug-ins and other extensions. + +=back + +=head3 Channel information items + +=over + +=item pid + +id of the Erlang process associated with the channel + +=item connection + +id of the Erlang process associated with the connection to which the +channel belongs. + +=item user + +username associated with the channel + +=item vhost + +virtual host in which the channel operates + +=item transactional + +true if the channel is in transactional mode, false otherwise + +=item consumer_count + +number of logical AMQP consumers retrieving messages via the channel + +=item messages_unacknowledged + +number of messages delivered to via this channel but not yet +acknowledged + +=item prefetch_count + +QoS prefetch count limit in force, 0 if unlimited + +=back + The list_queues, list_exchanges and list_bindings commands accept an optional virtual host parameter for which to display results, defaulting to I<"/">. The default can be overridden with the B<-p> |
