I would like to print the total number of bytes read/written by a Linux process. For example, I run
gcc -c a.c
and would like to see how many bytes in total did GCC, including its children, request from the Linux kernel and how many bytes they sent to the kernel.
Incomplete solutions to this problem are:
The fields
rcharandwcharin/proc/PID/ioshow the number of read/written bytes so far. It does not account for child processes. It is lost as soon as the process terminates.A tool such as
stracecan be used to print out the syscalls of a process and its children (such as:read,writesyscalls), but it is unable to aggregate the number of bytes read/written.
How to print the total number of bytes read/written by a Linux process and its child processes?