@@ -22,23 +22,23 @@ limitations under the License.
22
22
Sometimes, during development or debugging, it's useful to
23
23
be able to see every message that is published, and every
24
24
message that is delivered. RabbitMQ has a "firehose"
25
- feature, where the administrator can enable (on a per-node,
25
+ feature, where the administrator can turn on (on a per-node,
26
26
per-vhost basis) an exchange to which publish- and
27
27
delivery-notifications should be CCed.
28
28
29
29
These notifications are close to what's happening on the
30
30
wire - for example you will see unacked messages.
31
31
32
- When the feature is switched off, it has no effect on
33
- performance; when it is switched on, performance will drop
32
+ When the feature is turned off, it has no effect on
33
+ performance; when it is turned on, performance will drop
34
34
somewhat due to additional messages being generated and
35
35
routed.
36
36
37
- ## <a id =" enabling " class =" anchor " href =" #enabling " >Enabling the firehose</a >
37
+ ## <a id =" enabling " class =" anchor " href =" #enabling " >Turning on firehose</a >
38
38
39
39
40
- Before enabling the feature, decide which node, and which vhost, should have it enabled .
41
- The examples below assume the default vhost, "<code >/</code >", and the default node
40
+ Before turning on the feature, decide which node, and which vhost, should have it turned on .
41
+ The following examples assume the default vhost, "<code >/</code >", and the default node
42
42
"<code >rabbit@(hostname)</code >". Use the
43
43
<code >-n</code > argument to specify a node other than,
44
44
and the <code >-p</code > argument to specify another
@@ -48,16 +48,16 @@ Next, within the chosen vhost declare queues, bind them to the
48
48
topic exchange <code >amq.rabbitmq.trace</code >, and
49
49
begin consuming.
50
50
51
- Finally, enable firehose tracing with
51
+ Finally, to turn on firehose tracing with
52
52
53
53
<pre class =" lang-bash " >
54
54
rabbitmqctl trace_on -p [virtual host]
55
55
</pre >.
56
56
57
57
58
- ## <a id =" disabling " class =" anchor " href =" #disabling " >Disabling the firehose</a >
58
+ ## <a id =" disabling " class =" anchor " href =" #disabling " >Turn off firehose</a >
59
59
60
- To disable Firehose, run
60
+ To turn off Firehose, run
61
61
62
62
<pre class =" lang-bash " >
63
63
rabbitmqctl trace_off -p [virtual host]
0 commit comments