功能说明:mpstat显示各个可用CPU的状态统计
语 法:mpstat [ options ]
补充说明:mpstat(Multi-Processor Statistics)工具软件用于显示各个可用CPU的状态统计,是一个实时监控工具,与vmstat类似,但只能监控CPU的整体性能状态。Ubuntu系统可以通过以下命令安装mpstat:
sudo apt install sysstat
CentOS系统可以通过以下命令安装mpstat:
sudo yum install sysstat
选 项:
-P 指定CPU编号或ALL值表示统计所有CPU的整体性能信息
参 数:
实 例:
不加任何选项直接运行mpstat统计的是所有CPU的整体性能信息:
$ mpstat
Linux 6.8.0-45-generic (Ubuntu22-VirtualBox) 2024年10月15日 _x86_64_ (2 CPU)
13时48分03秒 CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
13时48分03秒 all 0.11 0.02 0.10 0.01 0.00 0.17 0.00 0.00 0.00 99.60
使用-P ALL选项既能统计所有CPU的整体性能信息,又能单独统计每一个CPU的性能信息:
$ mpstat -P ALL
Linux 6.8.0-45-generic (Ubuntu22-VirtualBox) 2024年10月15日 _x86_64_ (2 CPU)
13时59分40秒 CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
13时59分40秒 all 0.11 0.02 0.10 0.01 0.00 0.17 0.00 0.00 0.00 99.60
13时59分40秒 0 0.11 0.02 0.10 0.01 0.00 0.31 0.00 0.00 0.00 99.45
13时59分40秒 1 0.10 0.02 0.10 0.01 0.00 0.03 0.00 0.00 0.00 99.75
使用-P n选项指定CPU编号n单独统计某一个CPU的性能信息,其中n从0开始:
$ mpstat -P 0
Linux 6.8.0-45-generic (Ubuntu22-VirtualBox) 2024年10月15日 _x86_64_ (2 CPU)
14时18分14秒 CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
14时18分14秒 0 0.11 0.02 0.10 0.01 0.00 0.31 0.00 0.00 0.00 99.45
$ mpstat -P 1
Linux 6.8.0-45-generic (Ubuntu22-VirtualBox) 2024年10月15日 _x86_64_ (2 CPU)
14时18分17秒 CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
14时18分17秒 1 0.10 0.02 0.10 0.01 0.00 0.03 0.00 0.00 0.00 99.75
统计字段说明:
%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