• 欢迎访问DBA的辛酸事儿,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站
  • 欢迎大家关注博主公众号:DBA的辛酸事儿
  • 博文中若有错误的地方,请大家指正,大家的指正是我前进的动力

Linux下/proc/diskstats文件输出解释说明

Linux SEian.G 5年前 (2019-03-12) 4443次浏览 已收录 0个评论

今天来说说/proc/diskstats文件,这个文件用于显示磁盘、分区和统计信息;

[root@VM_54_118_centos ~]# cat /proc/diskstats 
 253       0 vda 222026 464 14148933 2387763 15975930 14162283 261012993 54210046 0 3186549 56602267
 253       1 vda1 221980 464 14145765 2387590 15807400 14162283 261012993 54192784 0 3173037 56597649
 253      16 vdb 1946 1 1330738 4704 332744 328392 9197624 303420 0 98203 308117
  11       0 sr0 122 0 2012 92 0 0 0 0 0 91 92
   7       0 loop0 0 0 0 0 0 0 0 0 0 0 0

(提前说明:由于我的测试主机是云主机,所以磁盘的格式是vdX,如果是本地磁盘显示的应该是sdX)
vda为整个虚拟磁盘的统计信息,vda1为第一个分区的统计信息;

上面这串字符从左往右依次表示:

253:主设备号,不同类别设备编号不一样,虚拟磁盘统一为253,磁盘统一为8,环回设备统一为7

1:次设备号,比如vda的vda为0,vda1位1,vda2为2.也就是一个物理磁盘后面的分区,编号依次递增

vda:设备名。一般ide接口的以hd[a-d]口命名,scsi和sata接口的以sd[a-z]命名。

输出信息说明:

/proc/diskstats文件比/sys/block/sda/stat文件多3个域,从左至右分别对应主设备号,次设备号和设备名称。后续的11个域在这两个文件里是相同的,它们的函义将在下面解释。除了第9个域,所有的域都是从启动时的累积值。

[root@VM_54_118_centos ~]# cat  /sys/block/vda/stat
  222026      464 14148933  2387763 15979071 14164711 261058873 54244380        0  3187473 56636601

下面是后面的11个域的输出解释

第1个域:读完成次数 —– 读磁盘的次数,成功完成读的总次数。
(number of issued reads. This is the total number of reads completed successfully.)

第2个域:合并读完成次数, 第6个域:合并写完成次数。为了效率可能会合并相邻的读和写。从而两次4K的读在它最终被处理到磁盘上之前可能会变成一次8K的读,才被计数(和排队),因此只有一次I/O操作。这个域使你知道这样的操作有多频繁。
(number of reads merged)

第3个域:读扇区的次数,成功读过的扇区总次数。
(number of sectors read. This is the total number of sectors read successfully.)

第4个域:读花费的毫秒数,这是所有读操作所花费的毫秒数(用__make_request()到end_that_request_last()测量)。
(number of milliseconds spent reading. This is the total number of milliseconds spent by all reads (as measured from __make_request() to end_that_request_last()).)

第5个域:写完成次数 —-写完成的次数,成功写完成的总次数。
(number of writes completed. This is the total number of writes completed successfully.)

第6个域:合并写完成次数 —–合并写次数。
(number of writes merged Reads and writes which are adjacent to each other may be merged for efficiency. Thus two 4K reads may become one 8K read before it is ultimately handed to the disk, and so it will be counted (and queued) as only one I/O. This field lets you know how often this was done.)

第7个域:写扇区次数 —- 写扇区的次数,成功写扇区总次数。
(number of sectors written. This is the total number of sectors written successfully.)

第8个域:写操作花费的毫秒数 — 写花费的毫秒数,这是所有写操作所花费的毫秒数(用__make_request()到end_that_request_last()测量)。
(number of milliseconds spent writing This is the total number of milliseconds spent by all writes (as measured from __make_request() to end_that_request_last()).)

第9个域:正在处理的输入/输出请求数 — -I/O的当前进度,只有这个域应该是0。当请求被交给适当的request_queue_t时增加和请求完成时减小。
(number of I/Os currently in progress. The only field that should go to zero. Incremented as requests are given to appropriate request_queue_t and decremented as they finish.)

第10个域:输入/输出操作花费的毫秒数 —-花在I/O操作上的毫秒数,这个域会增长只要field 9不为0。
(number of milliseconds spent doing I/Os. This field is increased so long as field 9 is nonzero.)

第11个域:输入/输出操作花费的加权毫秒数 —– 加权, 花在I/O操作上的毫秒数,在每次I/O开始,I/O结束,I/O合并时这个域都会增加。这可以给I/O完成时间和存储那些可以累积的提供一个便利的测量标准。
(number of milliseconds spent doing I/Os. This field is incremented at each I/O start, I/O completion, I/O merge, or read of these stats by the number of I/Os in progress (field 9) times the number of milliseconds spent doing I/O since the last update of this field. This can provide an easy measure of both I/O completion time and the backlog that may be accumulating.)

 

参考连接:

https://blog.csdn.net/beyondlee2011/article/details/86159283

Linux下/proc/diskstats文件输出解释说明


如果您觉得本站对你有帮助,那么可以收藏和推荐本站,帮助本站更好地发展,在此谢过各位网友的支持。
转载请注明原文链接:Linux下/proc/diskstats文件输出解释说明
喜欢 (3)
SEian.G
关于作者:
用心去记录工作,用心去感受生活,用心去学着成长;座右铭:苦练七十二变,笑对八十一难
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址