{% extends "whm/base.html" %} {% block title %}System Statistics{% endblock title %} {% block content %}

System Statistics

CPU Cores CPU Model CPU MHz CPU Cache
{{ cpu_info.cores }} {{ cpu_info.model }} {{ cpu_info.cpu_mhz }} {{ cpu_info.cache }}
1 Min Load 5 Min Load 15 Min Load
{{ load_avg.1min }} {{ load_avg.5min }} {{ load_avg.15min }}
Total Processes Running Sleeping Stopped Zombie
{{ process_status.total }} {{ process_status.running }} {{ process_status.sleeping }} {{ process_status.stopped }} {{ process_status.zombie }}
I/O Wait Idle Time HW Interrupts SoftIRQs
{{ io_info.iowait }} {{ io_info.idle }} {{ io_info.interrupts }} {{ io_info.softirqs }}
Memory Memory Free Memory Used Memory Buff/Cache
{{ total_memory }} {{ memory.free }} {{ memory.used }} {{ memory.buff_cache }}
Swap Swap Free Swap Used Swap Buff/Cache
{{ total_swap }} {{ swap.free }} {{ swap.used }} {{ swap.buff_cache }}
Disk Total Used Available
{{ disk_usage.total }} {{ disk_usage.used }} {{ disk_usage.available }}

Service Status

{% for service, status in services.items %} {% endfor %}
Service Name Status
{{ service }} {{ status }}
{% include "whm/footer.html" %} {% endblock content %}