Hint for the Internal Buffer column
This commit is contained in:
parent
202f031b77
commit
a5b475770f
|
|
@ -19,7 +19,7 @@
|
|||
<td><%= process.message_queue_len %></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Internal buffer <span class="help" id="process-internal-buffer"></th>
|
||||
<th>Internal buffer <span class="help" id="process-internal-buffer"></span></th>
|
||||
<td><pre><%= process.buffer_len %></pre></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@ dispatcher_add(function(sammy) {
|
|||
NAVIGATION['Admin'][0]['Top Processes'] = ['#/top', 'administrator'];
|
||||
NAVIGATION['Admin'][0]['Top ETS Tables'] = ['#/top/ets', 'administrator'];
|
||||
|
||||
HELP['process-internal-buffer'] = "Some processes drain their Erlang process mailbox (Erlang message queue) into an separate priority queue. \"Queue\" here refers to a data structure and should not be confused with RabbitMQ queues.";
|
||||
|
||||
$('select#top-node').live('change', function() {
|
||||
go_to('#/top/' + $(this).val());
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue