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 %}
{% else %}

Unable to collect system metrics

{% endif %}