{% extends main.html %} {% block content %} {% set ws = workers[Worker] %} {% set worker_list = [ws] %}

Worker: {{ ws.address }}

{% include "worker-table.html" %}

In Memory

{% for ts in ws.has_what %} {% end %}
Task Bytes
{{ts.key}} {{format_bytes(ts.nbytes)}}

Processing

Call Stacks {% for ts in sorted(ws.processing, key=lambda ts: ts.priority) %} {% end %}
Task Priority
{{ts.key}} {{ts.priority }}
{% if ws.resources %}

Resources

{% for resource in ws.resources %} {% end %}
Resource Consumed Total
{{ resource }} {{ ws.used_resources[resource] }} {{ ws.resources[resource] }}
{% end %} {% end %}