System

{% if snapshot %}
CPU Load
{{ snapshot.cpu_load_1 | format_number }}
Cores
{{ snapshot.cpu_cores }}
Memory
{{ snapshot.mem_used | format_bytes }}
Total
{{ snapshot.mem_total | format_bytes }}
{% if snapshot.mem_total > 0 %}
{% set mem_pct = (snapshot.mem_used / snapshot.mem_total * 100) | int %}
{% endif %}
Pressure
{% if snapshot.mem_pressure == 'normal' %} normal {% elif snapshot.mem_pressure == 'warn' %} warn {% else %} {{ snapshot.mem_pressure }} {% endif %}
Thermal
{% if snapshot.thermal_level == 'nominal' %} nominal {% elif snapshot.thermal_level == 'warning' %} warning {% elif snapshot.thermal_level == 'critical' %} critical {% else %} {{ snapshot.thermal_level }} {% endif %}
{% if snapshot.gpu_utilization_pct is defined and snapshot.gpu_utilization_pct >= 0 %}
GPU
{{ snapshot.gpu_utilization_pct | format_number }}%
GPU Memory
{{ snapshot.gpu_mem_in_use | format_bytes }}
{% endif %} {% if snapshot.power_gpu_watts is defined and snapshot.power_gpu_watts >= 0 %}
GPU Power
{{ snapshot.power_gpu_watts | format_number }}W
CPU Power
{{ snapshot.power_cpu_watts | format_number }}W
Total Power
{{ snapshot.power_total_watts | format_number }}W
IOReport ยท no sudo
{% endif %}
{% else %}

Unable to collect system metrics

{% endif %}