标签:iostat
[root@abc ~]# iostat 1
Linux 2.6.32-431.11.29.el6.ucloud.x86_64 (abc) 11/16/2017 _x86_64_ (8 CPU)
avg-cpu: %user %nice %system %iowait %steal %idle
20.48 0.00 1.51 26.13 0.00 51.88
Device: tps Blk_read/s Blk_wrtn/s Blk_read Blk_wrtn
vda 3.00 0.00 32.00 0 32
vdb 0.00 0.00 0.00 0 0
vdc 132.00 6440.00 28224.00 6440 28224
# cpu段配置说明
avg-cpu
%user: 用户空间使用CPU百分比
%nice : nice使用CPU的百分比
%system : 系统(kernel)使用cpu百分比
%iowait : cpu等待硬盘I/O时,所占用的百分比
%steal : 系统偷出CPU的百分比 (不知道什么鬼,求解释)
%idle: 系统空闲百分比
# Device磁盘段配置说明
tps: 每秒钟发送到I/O请求数
Blk_read/s: 每秒从磁盘读出的的数据量,单位B
Blk_wrtn/s: 每秒从磁盘写入的的数据量,单位B
Blk_read: 读取的总数据量;
Blk_wrtn: 写入的总数量
# 命令使用
iostat 1 # 每秒刷新一次
iostat -k # 以KB为单位 默认B
iostat -m # 以MB为单位
iostat -v # 显示版本号
iostat -c # 仅显示CPU
iostat -d # 仅显示磁盘
eg:
iostat -k 1 10 #以KB为单位,显示1秒到10秒内的I/O请求数和吞吐量
avg-cpu: %user %nice %system %iowait %steal %idle
4.99 0.00 0.87 3.25 0.00 90.89
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
vda 0.00 0.00 0.00 0 0
vdb 0.00 0.00 0.00 0 0
vdc 25.00 0.00 1040.00 0 1040
以上信息说明,I/O请求数25次,每秒写入速度1MB,总写入量1MB
本文出自 “青春邓勇” 博客,请务必保留此出处http://dengyong.blog.51cto.com/8409869/1982298
标签:iostat
原文地址:http://dengyong.blog.51cto.com/8409869/1982298