{% 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
id |
user time |
system time |
{% for thread in proc.THREADS %}
{{ thread.id }} |
{{ thread.user_time }} |
{{ thread.system_time }} |
{% endfor %}
{% endif %}
{% if proc.CONNECTIONS %}
Connections
fd |
family |
type |
local address |
remote address |
status |
{% for conn in proc.CONNECTIONS %}
{{ conn.fd }} |
{{ conn.family }} |
{{ conn.type }} |
{{ conn.local_address.0 }}:{{ conn.local_address.1 }} |
{{ conn.remote_address.0 }}:{{ conn.remote_address.1 }} |
{{ conn.status }} |
{% endfor %}
{% endif %}
{% if proc.OPEN_FILES %}
Open Files
fd |
path |
{% for file in proc.OPEN_FILES %}
{{ file.fd }} |
{{ file.path }} |
{% endfor %}
{% endif %}
{% endblock %}