其他分享
首页 > 其他分享> > mpstat

mpstat

作者:互联网

文章目录

语法

mpstat (选项) (参数)

选项

-P:指定CPU编号

参数

间隔时间:每次报告的间隔时间
次数:显示报告的次数

举例

mastat -P ALL 1 3

Linux 3.10.0-123.el7.x86_64 (node2)     10/22/2019      _x86_64_        (24 CPU)

08:34:52 AM  CPU    %usr   %nice    %sys %iowait    %irq   %soft  %steal  %guest  %gnice   %idle
08:34:53 AM  all    5.73    0.00    5.94    9.15    0.00    0.17    0.00    0.00    0.00   79.01
08:34:53 AM    0    2.02    0.00    2.02    8.08    0.00    0.00    0.00    0.00    0.00   87.88
08:34:53 AM    1    2.04    0.00    2.04   12.24    0.00    0.00    0.00    0.00    0.00   83.67
08:34:53 AM    2    4.95    0.00    2.97    6.93    0.00    0.00    0.00    0.00    0.00   85.15
08:34:53 AM    3    8.89    0.00    7.78    4.44    0.00    3.33    0.00    0.00    0.00   75.56
08:34:53 AM    4    3.06    0.00    3.06    3.06    0.00    0.00    0.00    0.00    0.00   90.82
08:34:53 AM    5    5.00    0.00    4.00    4.00    0.00    0.00    0.00    0.00    0.00   87.00
08:34:53 AM    6    7.07    0.00    4.04   39.39    0.00    0.00    0.00    0.00    0.00   49.49
08:34:53 AM    7    7.22    0.00    1.03   50.52    0.00    0.00    0.00    0.00    0.00   41.24
08:34:53 AM    8    3.03    0.00    2.02   27.27    0.00    0.00    0.00    0.00    0.00   67.68
08:34:53 AM    9    3.06    0.00    2.04   31.63    0.00    1.02    0.00    0.00    0.00   62.24
08:34:53 AM   10    2.04    0.00    3.06    5.10    0.00    0.00    0.00    0.00    0.00   89.80
08:34:53 AM   11   16.00    0.00    2.00   25.00    0.00    1.00    0.00    0.00    0.00   56.00
08:34:53 AM   12    2.04    0.00    4.08    1.02    0.00    0.00    0.00    0.00    0.00   92.86
08:34:53 AM   13   16.83    0.00   20.79    0.00    0.00    0.00    0.00    0.00    0.00   62.38

字段含义

%user      在internal时间段里,用户态的CPU时间(%),不包含nice值为负进程  (usr/total)*100
%nice      在internal时间段里,nice值为负进程的CPU时间(%)   (nice/total)*100
%sys       在internal时间段里,内核时间(%)       (system/total)*100
%iowait    在internal时间段里,硬盘IO等待时间(%) (iowait/total)*100
%irq         在internal时间段里,硬中断时间(%)     (irq/total)*100
%soft       在internal时间段里,软中断时间(%)     (softirq/total)*100
%idle       在internal时间段里,CPU除去等待磁盘IO操作外的因为任何原因而空闲的时间闲置时间(%) (idle/total)*100
学无止境966 发布了276 篇原创文章 · 获赞 6 · 访问量 8264 私信 关注

标签:0.00,AM,53,34,100,mpstat,08
来源: https://blog.csdn.net/qq_23929673/article/details/102675771