{% if sustained %}

Sustained Pressure (long-running load)

Processes consuming CPU across >50% of the monitoring window. These cause crashes, not spikes.
{% for o in sustained[:7] %} {% endfor %}
ProcessCumulative CPUAvg CPUPresentPattern
{{ o.name }} {{ bar_html(o.total_cpu, max_sustained_cpu, o.avg_cpu) }} {{ o.avg_cpu }}% {{ o.presence_pct|round(0)|int }}% {{ mini_sparkline(o.cpu_series) }}
{{ knowledge_card(['load_average']) }} {% endif %} {% if transient %}

Transient Load (spikes)

Processes that appeared briefly at high CPU. Usually normal (builds, scans, syncs).
{% for o in transient[:5] %} {% endfor %}
ProcessPeak CPUSeenPattern
{{ o.name }} {{ bar_html(o.peak_cpu, max_transient_peak, o.peak_cpu) }} {{ o.appearances }}x {{ mini_sparkline(o.cpu_series) }}
{% endif %}