diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-08-13 15:59:16 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-08-13 15:59:16 +0100 |
| commit | 5af9979478c311c6c63d3bace6f219e659aa7c85 (patch) | |
| tree | f558eadfc931bb34a3bd41a8bbfa814dc8a07dfd /docs | |
| parent | a345670b49d2f9aaaf2e862b04faaf2b9b147143 (diff) | |
| parent | 7cd5c26949fe9c60d5a609bb05f9244e74f618bd (diff) | |
| download | rabbitmq-server-git-5af9979478c311c6c63d3bace6f219e659aa7c85.tar.gz | |
Merge bug26306
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/rabbitmq.config.example | 8 | ||||
| -rw-r--r-- | docs/rabbitmqctl.1.xml | 36 |
2 files changed, 44 insertions, 0 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example index e8b5666098..63540568f1 100644 --- a/docs/rabbitmq.config.example +++ b/docs/rabbitmq.config.example @@ -49,6 +49,14 @@ %% ============== %% + %% The default "guest" user is only permitted to access the server + %% via a loopback interface (e.g. localhost). + %% {loopback_users, [<<"guest">>]}, + %% + %% Uncomment the following line if you want to allow access to the + %% guest user from anywhere on the network. + %% {loopback_users, []}, + %% Configuring SSL. %% See http://www.rabbitmq.com/ssl.html for full documentation. %% diff --git a/docs/rabbitmqctl.1.xml b/docs/rabbitmqctl.1.xml index 328926df18..eb3c7ef38d 100644 --- a/docs/rabbitmqctl.1.xml +++ b/docs/rabbitmqctl.1.xml @@ -1190,6 +1190,42 @@ (queue depth).</para></listitem> </varlistentry> <varlistentry> + <term>messages_ready_ram</term> + <listitem><para>Number of messages from messages_ready which are resident in ram.</para></listitem> + </varlistentry> + <varlistentry> + <term>messages_unacknowledged_ram</term> + <listitem><para>Number of messages from messages_unacknowledged which are resident in ram.</para></listitem> + </varlistentry> + <varlistentry> + <term>messages_ram</term> + <listitem><para>Total number of messages which are resident in ram.</para></listitem> + </varlistentry> + <varlistentry> + <term>messages_persistent</term> + <listitem><para>Total number of persistent messages in the queue (will always be 0 for transient queues).</para></listitem> + </varlistentry> + <varlistentry> + <term>message_bytes</term> + <listitem><para>Sum of the size of all message bodies in the queue. This does not include the message properties (including headers) or any overhead.</para></listitem> + </varlistentry> + <varlistentry> + <term>message_bytes_ready</term> + <listitem><para>Like <command>message_bytes</command> but counting only those messages ready to be delivered to clients.</para></listitem> + </varlistentry> + <varlistentry> + <term>message_bytes_unacknowledged</term> + <listitem><para>Like <command>message_bytes</command> but counting only those messages delivered to clients but not yet acknowledged.</para></listitem> + </varlistentry> + <varlistentry> + <term>message_bytes_ram</term> + <listitem><para>Like <command>message_bytes</command> but counting only those messages which are in RAM.</para></listitem> + </varlistentry> + <varlistentry> + <term>message_bytes_persistent</term> + <listitem><para>Like <command>message_bytes</command> but counting only those messages which are persistent.</para></listitem> + </varlistentry> + <varlistentry> <term>consumers</term> <listitem><para>Number of consumers.</para></listitem> </varlistentry> |
