mpstat is a computer command-line software used in unix-type operating systems to report processor related statistics.

mpstat is used in computer monitoring in order to diagnose problems or to build statistics about a computer's CPU usage.

$ mpstat -P ALL 5 6
Linux 4.14.181-140.257.amzn2.x86_64 (ip-172-16-0-86.ca-central-1.compute.internal)      06/27/20        _x86_64_        (2 CPU)

20:34:06     CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
20:34:11     all    0.00    0.00    0.00    0.00    0.00    0.00    0.10    0.00    0.00   99.90
20:34:11       0    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00
20:34:11       1    0.20    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   99.80

20:34:11     CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
20:34:16     all    0.00    0.00    0.10    0.10    0.00    0.00    0.00    0.00    0.00   99.80
20:34:16       0    0.00    0.00    0.20    0.20    0.00    0.00    0.00    0.00    0.00   99.60
20:34:16       1    0.00    0.00    0.20    0.00    0.00    0.00    0.00    0.00    0.00   99.80

20:34:16     CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
20:34:21     all    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00
20:34:21       0    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00
20:34:21       1    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00

20:34:21     CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
20:34:26     all    0.10    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   99.90
20:34:26       0    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00
20:34:26       1    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00

20:34:26     CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
20:34:31     all    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00
20:34:31       0    0.20    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   99.80
20:34:31       1    0.00    0.00    0.00    0.00    0.00    0.00    0.20    0.00    0.00   99.80

20:34:31     CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
20:34:36     all    0.00    0.00    0.00    0.00    0.00    0.10    0.10    0.00    0.00   99.80
20:34:36       0    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00
20:34:36       1    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00  100.00

Average:     CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
Average:     all    0.02    0.00    0.02    0.02    0.00    0.02    0.03    0.00    0.00   99.90
Average:       0    0.03    0.00    0.03    0.03    0.00    0.00    0.00    0.00    0.00   99.90
Average:       1    0.03    0.00    0.03    0.00    0.00    0.00    0.03    0.00    0.00   99.90

Comments