VMSTAT(1) — UNIX Programmer’s Manual
NAME
vmstat − report virtual memory statistics
SYNOPSIS
vmstat [ −fs ] [ interval [ count ] ]
DESCRIPTION
Vmstat delves into the system and normally reports certain statistics kept about process, virtual memory, disk, trap and CPU activity. If given a −f argument, it instead reports on the number of forks and vforks since system startup and the number of pages of virtual memory involved in each kind of fork. If given a −s argument, it instead prints the total number of several kinds of paging related events which have occurred since boot.
If none of these options are given, vmstat will report in the first line a summary of the virtual memory activity since the system has been booted. If interval is specified, then successive lines are summaries over the last interval seconds. “vmstat 5” will print what the system is doing every five seconds; this is a good choice of printing interval since this is how often some of the statistics are sampled in the system; others vary every second, running the output for a while will make it apparent which are recomputed every second. If a count is given, the statistics are repeated count times. The format fields are:
Procs: information about numbers of processes in various states.
rin run queue
bblocked for resources (i/o, paging, etc.)
wrunnable or short sleeper (< 20 secs) but swapped
Memory: information about the usage of virtual and real memory. Virtual pages are considered active if they belong to processes which are running or have run in the last 20 seconds. A “page” here is 1024 bytes.
avmactive virtual pages
fresize of the free list
didirty pages
Page: information about page faults and paging activity. These are averaged each five seconds, and given in units per second.
repage reclaims
rdpage reclaims from the dirty list
pipages paged in
popages paged out
deanticipated short term memory shortfall
Disk: operations per second (this field is system dependent). Typically paging will be split across several of the available drives. The labels under this column are the disk drive names (truncated to two characters). Faults: trap/interrupt rate averages per second over last 5 seconds.
in(non clock) device interrupts per second
sysystem calls per second
csCPU context switch rate (switches/sec)
CPU: breakdown of percentage usage of CPU time (across all CPUs).
ususer time for normal and low priority processes
sysystem time
idCPU idle
FILES
/dev/kmem, /dynix
SEE ALSO
AUTHORS
William Joy and Ozalp Babaoglu
4BSD/DYNIX