{% extends "base.html" %} {% block content %}
Host Information
Host Name
{{ system_identity.hostname }}
Model
{{ system_identity.model or "—"}}
Serial
{{ system_identity.serial or "—" }}
System Health
✅ Healthy
Undervoltage
Frequency Capped
Thermal Throttling
Soft Temp Limit
System Information
Processor
{{ system_temperature.cpu_c or "—" }}
System Load (1m/5m/15m)
{{ load["load_1m"] }} / {{ load["load_5m"] }} / {{ load["load_15m"] }}
Memory
{{ memory_usage.percent }}% ({{ (memory_usage.used / (1024 * 1024)) | round | int }}MB / {{ (memory_usage.total / (1024 * 1024)) | round | int }}MB)
Disk
{{ disk_usage.percent }}% ({{ (disk_usage.used / (1024 * 1024)) | round | int }}MB / {{ (disk_usage.total / (1024 * 1024)) | round | int }}MB)
Network
{% if network_usage %} {% for iface in network_usage.interfaces %} {{ iface.interface }}: ↓ {{ (iface.rx_bps / 1024) | round(1) }} KB/s ↑ {{ (iface.tx_bps / 1024) | round(1) }} KB/s
{% endfor %} {% else %} — {% endif %}
{% endblock %}