{% extends "admin/index.html" %} {% load sysmon_tags %} {% block content %} {% get_system_stats %} {% if user.is_superuser %}
- Please install psutil for view system statistics on this page
$ pip install psutil |
---|
:: CPU USAGE | ||||
---|---|---|---|---|
{{cpu_info.used}}% [Core(s): {{cpu_info.core}}]
|
||||
:: MEMORY USAGE | ||||
{{mem_info.used}}% [Total: {{mem_info.total}}]
|
||||
:: DISK PARTITIONS | ||||
{{part.percent}}% [{{part.mountpoint}}, ({{part.total}})]
|
||||
:: NETWORK USAGE | ||||
Device | Recv | Sent | Pkg Sent | Pkg Recv |
{{network.device}} | {{network.recv}} | {{network.sent}} | {{network.pkg_sent}} | {{network.pkg_recv}} |
:: RUNNING PROCESSES (TOP 10 memory used) | ||||
Name | PID | Mem% | Status | User |
{{process.name}} | {{process.pid}} | {{process.memory}}% | {{process.status}} | {{process.user}} |