Hint for the Internal Buffer column

This commit is contained in:
Michael Klishin 2017-02-14 23:19:24 +03:00
parent 202f031b77
commit a5b475770f
2 changed files with 3 additions and 1 deletions

View File

@ -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>

View File

@ -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());
});