{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{% trans "Top Processes - CyberPanel" %}{% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %}
{% trans "Real-time monitoring of system processes, CPU usage, memory consumption, and resource allocation" %}
| {% trans "PID" %} | {% trans "User" %} | {% trans "State" %} | {% trans "CPU %" %} | {% trans "Memory %" %} | {% trans "VIRT" %} | {% trans "RES" %} | {% trans "Time" %} | {% trans "Command" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|---|---|---|
| {$ process.PID $} |
{$ process.User.charAt(0).toUpperCase() $}
{$ process.User $}
|
Running Sleeping Stopped Zombie {$ process.S $} |
{$ process.CPU $}%
|
{$ process.MEM $}% | {$ process.VIRT $} | {$ process.RES $} | {$ process.Time $} |
{$ process.Command $}
|