Skip to content

Commit

Permalink
update worker table
Browse files Browse the repository at this point in the history
  • Loading branch information
gjoseph92 committed Sep 8, 2022
1 parent 9c9dcbc commit 7346976
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions distributed/http/templates/worker-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
<th> Cores </th>
<th> Memory </th>
<th> Memory use </th>
<th> Occupancy </th>
<th> Network Occupancy </th>
<th> CPU Occupancy </th>
<th> Processing </th>
<th> In-memory </th>
<th> Services</th>
Expand All @@ -19,7 +20,8 @@
<td> {{ ws.nthreads }} </td>
<td> {{ format_bytes(ws.memory_limit) if ws.memory_limit is not None else "" }} </td>
<td> <progress class="progress" value="{{ ws.metrics['memory'] }}" max="{{ ws.memory_limit }}"></progress> </td>
<td> {{ format_time(ws.occupancy) }} </td>
<td> {{ format_time(ws.occupancy.network) }} </td>
<td> {{ format_time(ws.occupancy.cpu) }} </td>
<td> {{ len(ws.processing) }} </td>
<td> {{ len(ws.has_what) }} </td>
{% if 'dashboard' in ws.services %}
Expand Down

0 comments on commit 7346976

Please sign in to comment.