showing {{ procs | length }} of {{ total }} processes
{% for col, label in [("pid", "PID"), ("name", "Name"), ("user", "User"), ("cpu", "CPU%"), ("mem_pct", "MEM%"), ("rss", "RSS"), ("gpu", "GPU"), ("io_read", "IO read"), ("io_write", "IO write")] %}
{% endfor %}
{% for p in procs %}
| {{ p.pid }} |
{{ p.name }} |
{{ p.user }} |
{{ p.cpu | round(1) }} |
{{ p.mem_pct | round(1) }} |
{{ p.rss | humanize }} |
{% if p.gpu is not none %}{{ p.gpu }} MB{% else %}—{% endif %} |
{{ p.io_read | rate }} |
{{ p.io_write | rate }} |
{% else %}
| no processes match |
{% endfor %}