You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **mpstat**
## 说明
**mpstat命令** 指令主要用于多CPU环境下它显示各个可用CPU的状态系你想。这些信息存放在`/proc/stat`文件中。在多CPUs系统里其不但能
查看所有CPU的平均状况信息而且能够查看特定CPU的信息。[源码](http://github.com/sysstat/sysstat)
## 选项
```markdown
* 间隔时间:每次报告的间隔时间(秒)
* 次数:显示报告的次数
配置文件目录:/etc/sysconfig
```
## 实例
```bash
# 当mpstat不带参数时输出为从系统启动以来的平均值
# 下面的命令可以每2秒产生了2个处理器的统计数据报告一共产生三个interval 的信息然后再给出这三个interval的平均信息。默认时输出是
# 按照CPU 号排序。第一个行给出了从系统引导以来的所有活跃数据。接下来每行对应一个处理器的活跃状态
mpstat -P ALL 2 3
# 比较带参数和不带参数的mpstat的结果当要正确反映系统的情况需要正确使用命令的参数。vmstat 和iostat 也需要注意这一问题
```