diff options
| author | Matthew Sackman <matthew@lshift.net> | 2010-02-05 12:22:15 +0000 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2010-02-05 12:22:15 +0000 |
| commit | 395b7374e7852f1d1803e6cc4ae0cbaa25296ae3 (patch) | |
| tree | f3dcb99799641b4acb471172eff47cf5a0fb89da /docs | |
| parent | 75c480ff41d4568334a5bdc92c6aa6c8ee572516 (diff) | |
| parent | e7b2fda90f41d2af0ed4e8788f6db462d0e419c5 (diff) | |
| download | rabbitmq-server-git-395b7374e7852f1d1803e6cc4ae0cbaa25296ae3.tar.gz | |
merging bug 21966 onto default
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/rabbitmqctl.1.pod | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/docs/rabbitmqctl.1.pod b/docs/rabbitmqctl.1.pod index 47c4d16860..a2521406d1 100644 --- a/docs/rabbitmqctl.1.pod +++ b/docs/rabbitmqctl.1.pod @@ -367,6 +367,71 @@ send queue size =back +=over + +=item list_channels [I<channelinfoitem> ...] + +List channel information. Each line printed describes a channel, with +the requested 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 number + +the number of the channel, which uniquely identifies it within a +connection + +=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 via this channel but not yet acknowledged + +=item acks_uncommitted + +number of acknowledgements received in an as yet uncommitted +transaction + +=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> |
