Hide classic fields irrelevant for quorum queues
In memory/persistent/paged out [#161505176]
This commit is contained in:
parent
e170644e35
commit
7c4701a397
|
|
@ -135,9 +135,11 @@
|
||||||
<th class="horizontal">Total</th>
|
<th class="horizontal">Total</th>
|
||||||
<th class="horizontal">Ready</th>
|
<th class="horizontal">Ready</th>
|
||||||
<th class="horizontal">Unacked</th>
|
<th class="horizontal">Unacked</th>
|
||||||
|
<% if (! queue.hasOwnProperty('members')) { %>
|
||||||
<th class="horizontal">In memory</th>
|
<th class="horizontal">In memory</th>
|
||||||
<th class="horizontal">Persistent</th>
|
<th class="horizontal">Persistent</th>
|
||||||
<th class="horizontal">Transient, Paged Out</th>
|
<th class="horizontal">Transient, Paged Out</th>
|
||||||
|
<% } %>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
|
|
@ -153,6 +155,7 @@
|
||||||
<td class="r">
|
<td class="r">
|
||||||
<%= fmt_num_thousands(queue.messages_unacknowledged) %>
|
<%= fmt_num_thousands(queue.messages_unacknowledged) %>
|
||||||
</td>
|
</td>
|
||||||
|
<% if (! queue.hasOwnProperty('members')) { %>
|
||||||
<td class="r">
|
<td class="r">
|
||||||
<%= fmt_num_thousands(queue.messages_ram) %>
|
<%= fmt_num_thousands(queue.messages_ram) %>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -162,6 +165,7 @@
|
||||||
<td class="r">
|
<td class="r">
|
||||||
<%= fmt_num_thousands(queue.messages_paged_out) %>
|
<%= fmt_num_thousands(queue.messages_paged_out) %>
|
||||||
</td>
|
</td>
|
||||||
|
<% } %>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
|
|
@ -177,6 +181,7 @@
|
||||||
<td class="r">
|
<td class="r">
|
||||||
<%= fmt_bytes(queue.message_bytes_unacknowledged) %>
|
<%= fmt_bytes(queue.message_bytes_unacknowledged) %>
|
||||||
</td>
|
</td>
|
||||||
|
<% if (! queue.hasOwnProperty('members')) { %>
|
||||||
<td class="r">
|
<td class="r">
|
||||||
<%= fmt_bytes(queue.message_bytes_ram) %>
|
<%= fmt_bytes(queue.message_bytes_ram) %>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -186,6 +191,7 @@
|
||||||
<td class="r">
|
<td class="r">
|
||||||
<%= fmt_bytes(queue.message_bytes_paged_out) %>
|
<%= fmt_bytes(queue.message_bytes_paged_out) %>
|
||||||
</td>
|
</td>
|
||||||
|
<% } %>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue