{% extends "psutildash/layout.html" %}
{% block title %}Dashboard{% endblock %}
{% block content %}
CPU
Cores |
{{ cpu_info.cpu_count }} |
{% for cpu_percent in cpu_info.cpu_percent %}
CPU {{ forloop.counter }} |
{{ cpu_percent }}% |
{% endfor %}
Memory
Total |
{{ memory_info.total }} |
Available |
{{ memory_info.available }} |
Used |
{{ memory_info.used }} |
Percentage |
{{ memory_info.percent }}% |
Swap
Total |
{{ swap_info.total }} |
Used |
{{ swap_info.used }} |
Free |
{{ swap_info.free }} |
Percentage |
{{ swap_info.percent }}% |
Disks
Mountpoint |
Total |
Used |
Free |
Percent |
{% for disk in disks_info %}
{{ disk.mountpoint }} |
{{ disk.total }} |
{{ disk.used }} |
{{ disk.free }} |
{{ disk.percent }}% |
{% endfor %}
Network
Interface |
IP |
{% for interface in network_info %}
{{ interface.interface }} |
{{ interface.ip }} |
{% endfor %}
{% endblock %}