{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{% trans "Top Processes - CyberPanel" %}{% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %}

{% trans "CPU Information" %}

{$ cores || '-' $} {% trans "Cores" %}
{$ cpuMHZ || '-' $} MHz {% trans "Frequency" %}
{% trans "Model:" %} {$ modelName || '-' $}
{% trans "Cache:" %} {$ cacheSize || '-' $}

{% trans "Process Statistics" %}

{$ totalProcesses || '0' $} {% trans "Total" %}
{$ runningProcesses || '0' $} {% trans "Running" %}
{$ sleepingProcesses || '0' $} {% trans "Sleeping" %}
{$ zombieProcesses $} 0 {% trans "Zombie" %}

{% trans "CPU Load Average" %}

{$ cpuOne || '-' $} {% trans "1 Min" %}
{$ cpuFive || '-' $} {% trans "5 Min" %}
{$ cpuFifteen || '-' $} {% trans "15 Min" %}
{$ cpuNow || '-' $}% {% trans "Current" %}

{% trans "Memory Usage" %}

{$ totalMemory || '-' $} {% trans "Total" %}
{$ freeMemory || '-' $} {% trans "Free" %}
{$ usedMemory || '-' $} {% trans "Used" %}
{$ buffCache || '-' $} {% trans "Buff/Cache" %}

{% trans "Swap Memory" %}

{$ swapTotalMemory || '-' $} {% trans "Total" %}
{$ swapFreeMemory || '-' $} {% trans "Free" %}
{$ swapUsedMemory || '-' $} {% trans "Used" %}
{$ swapBuffCache || '-' $} {% trans "Available" %}

{% trans "CPU Time Distribution" %}

{$ ioWait || '-' $}% {% trans "I/O Wait" %}
{$ idleTime || '-' $}% {% trans "Idle Time" %}
{$ hwInterrupts || '-' $}% {% trans "HW Interrupts" %}
{$ Softirqs || '-' $}% {% trans "Soft IRQs" %}

{% trans "Running Processes" %}

{% 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 $}
{% endblock %} {% block footer_scripts %} {% endblock %}