Skip to content

Commit fae93f5

Browse files
Merge pull request #1512 from rabbitmq/pstack-replacing-enable-disable-throughout-this-topic
Update firehose.md
2 parents 23b0c00 + 2e00823 commit fae93f5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

site/firehose.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ limitations under the License.
2222
Sometimes, during development or debugging, it's useful to
2323
be able to see every message that is published, and every
2424
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,
2626
per-vhost basis) an exchange to which publish- and
2727
delivery-notifications should be CCed.
2828

2929
These notifications are close to what's happening on the
3030
wire - for example you will see unacked messages.
3131

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
3434
somewhat due to additional messages being generated and
3535
routed.
3636

37-
## <a id="enabling" class="anchor" href="#enabling">Enabling the firehose</a>
37+
## <a id="enabling" class="anchor" href="#enabling">Turning on firehose</a>
3838

3939

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
4242
"<code>rabbit@(hostname)</code>". Use the
4343
<code>-n</code> argument to specify a node other than,
4444
and the <code>-p</code> argument to specify another
@@ -48,16 +48,16 @@ Next, within the chosen vhost declare queues, bind them to the
4848
topic exchange <code>amq.rabbitmq.trace</code>, and
4949
begin consuming.
5050

51-
Finally, enable firehose tracing with
51+
Finally, to turn on firehose tracing with
5252

5353
<pre class="lang-bash">
5454
rabbitmqctl trace_on -p [virtual host]
5555
</pre>.
5656

5757

58-
## <a id="disabling" class="anchor" href="#disabling">Disabling the firehose</a>
58+
## <a id="disabling" class="anchor" href="#disabling">Turn off firehose</a>
5959

60-
To disable Firehose, run
60+
To turn off Firehose, run
6161

6262
<pre class="lang-bash">
6363
rabbitmqctl trace_off -p [virtual host]

0 commit comments

Comments
 (0)