Skip to content

Commit 8154900

Browse files
Merge pull request #13357 from rabbitmq/mergify/bp/v4.0.x/pr-13354
Update queue-messages and queue-message-body-bytes tooltips (backport #13353) (backport #13354)
2 parents fcdac6e + 382ad94 commit 8154900

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

deps/rabbitmq_management/priv/www/js/global.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ var HELP = {
249249
'Set the queue type, determining the type of queue to use: raft-based high availability or classic queue. Valid values are <code>quorum</code> or <code>classic</code>. It defaults to <code>classic</code>. <br/>',
250250

251251
'queue-messages':
252-
'<p>Message counts.</p><p>Note that "in memory" and "persistent" are not mutually exclusive; persistent messages can be in memory as well as on disc, and transient messages can be paged out if memory is tight. Non-durable queues will consider all messages to be transient.</p>',
252+
'<p>Message counts.</p><p>Note that some messages can be in memory and on disk at the same time.',
253253

254254
'queue-messages-stream':
255255
'<p>Approximate message counts.</p><p>Note that streams store some entries that are not user messages such as offset tracking data which is included in this count. Thus this value will never be completely correct.</p>',
@@ -261,7 +261,7 @@ var HELP = {
261261
'The number of times a message can be returned to this queue before it is dead-lettered (if configured) or dropped.',
262262

263263
'queue-message-body-bytes':
264-
'<p>The sum total of the sizes of the message bodies in this queue. This only counts message bodies; it does not include message properties (including headers) or metadata used by the queue.</p><p>Note that "in memory" and "persistent" are not mutually exclusive; persistent messages can be in memory as well as on disc, and transient messages can be paged out if memory is tight. Non-durable queues will consider all messages to be transient.</p><p>If a message is routed to multiple queues on publication, its body will be stored only once (in memory and on disk) and shared between queues. The value shown here does not take account of this effect.</p>',
264+
'<p>The sum total of the sizes of the message bodies in this queue. This only counts message bodies; it does not include message properties (including headers) or metadata used by the queue.</p><p>Note that some messages can be in memory and on disk at the same time.</p><p>For classic queues, if a message larger than <code>queue_index_embed_msgs_below</code> (4KB by default) is routed to multiple queues, its body will be stored only once and shared between queues. The value shown here does not take this optimization into account.</p>',
265265

266266
'queue-process-memory':
267267
'Total memory used by this queue process. This does not include in-memory message bodies (which may be shared between queues and will appear in the global "binaries" memory) but does include everything else.',

deps/rabbitmq_management/priv/www/js/tmpl/queue.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
<% if (is_classic(queue)) { %>
148148
<th class="horizontal">In memory</th>
149149
<th class="horizontal">Persistent</th>
150-
<th class="horizontal">Transient, Paged Out</th>
150+
<th class="horizontal">Transient</th>
151151
<% } %>
152152
</tr>
153153
<tr>

0 commit comments

Comments
 (0)