{% extends "profiling_dashboard/web_top.html" %} {% load query_exchange_tags %} {% block content %}

{{ proc.NAME }} (pid: {{ proc.PID }})

General Info

CMDLINE
{{ proc.CMDLINE }}
USERNAME
{{ proc.USERNAME }}
MEMORY: VMS / RSS / %MEM
{{ proc.VMS|filesizeformat }} / {{ proc.RSS|filesizeformat }} / {{ proc.MEMPERCENT }}
CPU: USER / SYSTEM / %CPU
{{ proc.CPU_USER }} / {{ proc.CPU_SYSTEM }} / {{ proc.CPUPERCENT }}
CREATE TIME (now is {{ proc.NOW }})
{{ proc.CREATE_TIME }}
{% if proc.IO_COUNTERS %}
IO: read / write (size)
{{ proc.IO_COUNTERS.read_bytes|filesizeformat }} / {{ proc.IO_COUNTERS.write_bytes|filesizeformat }}
IO: read / write (count)
{{ proc.IO_COUNTERS.read_count }} / {{ proc.IO_COUNTERS.write_count }}
{% endif %}
{% if proc.THREADS %}

Threads

{% for thread in proc.THREADS %} {% endfor %}
id user time system time
{{ thread.id }} {{ thread.user_time }} {{ thread.system_time }}
{% endif %} {% if proc.CONNECTIONS %}

Connections

{% for conn in proc.CONNECTIONS %} {% endfor %}
fd family type local address remote address status
{{ conn.fd }} {{ conn.family }} {{ conn.type }} {{ conn.local_address.0 }}:{{ conn.local_address.1 }} {{ conn.remote_address.0 }}:{{ conn.remote_address.1 }} {{ conn.status }}
{% endif %} {% if proc.OPEN_FILES %}

Open Files

{% for file in proc.OPEN_FILES %} {% endfor %}
fd path
{{ file.fd }} {{ file.path }}
{% endif %}
{% endblock %}