gpt4 book ai didi

linux -/proc/[pid]/io 中的计数器是什么意思?

转载 作者:IT老高 更新时间:2023-10-28 12:39:29 25 4
gpt4 key购买 nike

我正在为 Munin 创建一个插件监视命名进程的统计信息。信息来源之一是 /proc/[pid]/io .但我很难找出 rchar/wcharread_bytes/written_bytes 之间的区别。

它们不一样,因为它们提供不同的值。它们代表什么?

最佳答案

虽然 proc manpage可悲地落后了(大多数与千篇一律的用户空间开发无关的手册页/文档也是如此),幸运的是,这些东西完全记录在Linux kernel source中。在 Documentation/filesystems/proc.rst 下.以下是相关位:

rchar
-----

I/O counter: chars read
The number of bytes which this task has caused to be read from storage. This
is simply the sum of bytes which this process passed to read() and pread().
It includes things like tty IO and it is unaffected by whether or not actual
physical disk IO was required (the read might have been satisfied from
pagecache)


wchar
-----

I/O counter: chars written
The number of bytes which this task has caused, or shall cause to be written
to disk. Similar caveats apply here as with rchar.


read_bytes
----------

I/O counter: bytes read
Attempt to count the number of bytes which this process really did cause to
be fetched from the storage layer. Done at the submit_bio() level, so it is
accurate for block-backed filesystems. <please add status regarding NFS and
CIFS at a later time>


write_bytes
-----------

I/O counter: bytes written
Attempt to count the number of bytes which this process caused to be sent to
the storage layer. This is done at page-dirtying time.

关于linux -/proc/[pid]/io 中的计数器是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3633286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com