Operations 5 min read

How to Identify Linux Bottlenecks with vmstat: CPU, Memory, I/O Explained

This guide shows how to use vmstat to pinpoint whether high load averages on a Linux system are caused by CPU saturation, insufficient memory, or slow I/O, by interpreting each column of the vmstat output.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
How to Identify Linux Bottlenecks with vmstat: CPU, Memory, I/O Explained

When a Linux system shows a high load average, you must determine whether the bottleneck is CPU, memory, or I/O. The vmstat command provides a concise snapshot of these resources.

1. View system load with vmstat

procs -----------memory---------- -----swap-- -------io---- --system-- ------cpu-------
r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
0  0      0 496056 889316 4065748    0    0     9    41   55   51  0  0 99  1  0

Procs (r b)

r : Number of processes running or waiting for a CPU time slice. If this stays above 1 for a long period, the CPU is likely insufficient.

b : Number of processes blocked for resources such as I/O or memory swapping.

Memory (swpd free buff cache)

swpd : Amount of memory swapped to disk (in kilobytes). A non‑zero or large value (e.g., >100 MB) may indicate memory pressure, but if si and so remain zero, performance can still be acceptable.

free : Amount of free memory (in kilobytes) currently available.

buff : Memory used as buffer cache, typically for block device I/O.

cache : Memory used as page cache for the filesystem. A large cache suggests many cached files; if I/O bi is low, the filesystem is operating efficiently.

Swap (si so)

si : Amount of memory swapped in from disk per second.

so : Amount of memory swapped out to disk per second.

I/O (bi bo)

bi : Blocks read from block devices per second (KB/s).

bo : Blocks written to block devices per second (KB/s). If bi + bo exceeds 1000 KB/s and wa is high, consider balancing disk load, possibly using iostat for deeper analysis.

System (in cs)

in : Number of interrupts per second.

cs : Number of context switches per second. A high cs relative to I/O and network rates warrants further investigation.

CPU (us sy id wa st)

us : Percentage of CPU time spent in user mode. Values consistently above 50 % may indicate the need to optimize user processes.

sy : Percentage of CPU time spent in kernel mode. If us + sy exceeds 80 %, the CPU is likely a bottleneck.

wa : Percentage of CPU time spent waiting for I/O. Values above 30 % suggest serious I/O wait, possibly due to random disk access or limited disk bandwidth.

id : Percentage of CPU idle time.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

Operationsperformance tuningLinuxsystem-monitoringvmstat
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.