当前位置:网站首页>系统io统计
系统io统计
2022-08-03 08:52:00 【51CTO】
每一列的含义分别为:
- 第一列为 设备号
(number of issued reads. This is the total number of reads completed successfully.)
- 第二列为 次设备号
(number of reads merged)
- 第三列为 设备名称
(number of sectors read. This is the total number of sectors read successfully.)
- 第四列为 成功完成读的总次数
(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()).)
- 第五列为 合并读次数,为了效率可能会合并相邻的读和写,从而两次4K的读在它最终被处理到磁盘上之前可能会变成一次8K的读,才被计数(和排队),因此只有一次I/O操作。
(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.)
- 第六列为 读扇区的次数
- 第七列为 读花的时间(ms),这是所有读操作所花费的毫秒数(用__make_request()到end_that_request_last()测量)
- 第八列到第十一列分别是写
- 第十二列为 I/O的当前进度,只有这个域应该是0,如果这个值为0,同时write_complete read_complete io_processing 一直不变可能就就是IO hang了。
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.)
- 第十三列为 输入输入花的时间(ms),花在I/O操作上的毫秒数,这个域会增长只要field 9不为0。
(number of milliseconds spent doing I/Os. This field is increased so long as field 9 is nonzero.)
- 第十四列为 输入/输出操作花费的加权毫秒数,
(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.)
可以参考:
/sys/block/device_name/stat的输出和上面各个字段是一样的。
边栏推荐
- RViz报错: Error subscribing: Unable to load plugin for transport ‘compressed‘解决方法
- The window of the chosen data flow
- sqlite date field plus one day
- MySQL数据库————数据库与vs的连接
- word之个人设置
- 36氪详情页AES
- scala reduce、reduceLeft 、reduceRight 、fold、foldLeft 、foldRight
- 积分商城系统设计
- Mysql的in和exists用法区别
- 【TPC-DS】DF的SQL(Data Maintenance部分)
猜你喜欢
随机推荐
The display of the article list and the basics of creating articles and article details
gpnmb+ gpnmb-AT2 cell idling mapping Epithelial cell idling mapping
Pop Harmony Basics Big Notes
MySQL1
积分商城系统设计
计算机网络之网络安全
Redis的基础与django使用redis
QImage的指针问题
scala reduce、reduceLeft 、reduceRight 、fold、foldLeft 、foldRight
FusionAccess软件架构、FusionAccess必须配置的四个组件、桌面发放流程、虚拟机组类型、桌面组类型
LAN技术-2免费ARP
Evaluate: A detailed introduction to the introduction of huggingface evaluation indicator module
Docker starts mysql
【论文笔记】一种基于启发式奖赏函数的分层强化学习方法
36氪详情页AES
window的供选数据流
Exception: Dataset not found. Solution
ArcEngine (six) use the tool tool to realize the zoom in, zoom out and translation of the pull box
110道 MySQL面试题及答案 (持续更新)
flutter 应用 抓包









