CPU, Memory, and Disk Pressure Map

Separate CPU, memory, and disk pressure into distinct diagnostic paths instead of calling everything a performance problem.

Matrix

CPU, Memory, and Disk Pressure Map

Performance work gets messy when one symptom leads people to the wrong subsystem. This visual keeps the main pressure signals separate.

Diagram
Layer SignalUsually meansBest next check
High CPU One or more compute-heavy workloads are dominating the scheduler.Identify the top CPU process and confirm whether it should be busy.
High memory pressure Working sets are too large or too many processes are resident.Check the top memory consumers and whether paging or swapping is active.
High disk wait Storage or background I/O is slowing the whole workload.Inspect active reads and writes before blaming the wrong process.
Mixed pressure More than one subsystem is stressed at once.Decide which signal is primary before acting.
What to notice
  • High CPU, low memory, and high disk wait point to different bottlenecks.
  • One overloaded process and broad system pressure are not the same situation.
  • Good diagnosis starts by separating the dominant pressure signal.
Common confusion
  • Calling every slowdown a memory problem.
  • Ignoring disk wait while focusing only on CPU charts.
  • Killing a process before checking whether the issue is wider system pressure.
Related learning
Processes 6 command anchors

Related exits