proc:io_accounting_fields
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
proc:io_accounting_fields [2017/04/06 14:58] – created peter | proc:io_accounting_fields [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Proc - IO Accounting Fields ====== | ====== Proc - IO Accounting Fields ====== | ||
+ | |||
+ | **/ | ||
+ | |||
+ | <code bash> | ||
+ | dd if=/ | ||
+ | [1] 3828 | ||
+ | |||
+ | |||
+ | cat / | ||
+ | |||
+ | rchar: 323934931 | ||
+ | wchar: 323929600 | ||
+ | syscr: 632687 | ||
+ | syscw: 632675 | ||
+ | read_bytes: 0 | ||
+ | write_bytes: | ||
+ | cancelled_write_bytes: | ||
+ | </ | ||
+ | |||
+ | where: | ||
+ | |||
+ | * **rchar** is count of chars read. The number of bytes which this task has caused to be read from storage. | ||
+ | * **wchar** is count of 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**. | ||
+ | * **syscr** is a count of read syscalls. | ||
+ | * **syscw** is a count of writen syscalls. | ||
+ | * **read_bytes** is count of bytes read. Attempt to count the number of bytes which this process really did cause to be fetched from the storage layer. | ||
+ | * **write_bytes** is count of bytes written. | ||
+ | * **cancelled_write_bytes** The big inaccuracy here is truncate. | ||
+ | |||
+ | <WRAP warning> | ||
+ | **WARNING: | ||
+ | |||
+ | More information about this can be found within the taskstats documentation in Documentation/ | ||
+ | </ | ||
proc/io_accounting_fields.1491490705.txt.gz · Last modified: 2020/07/15 09:30 (external edit)