Tagged Questions
1
vote
2answers
50 views
Total number of bytes read/written by a Linux process and its children
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 ...
1
vote
1answer
253 views
How can you get script name in BSD process accounting file?
I'm trying to write a program to process the BSD-style process accounting file under Linux (/var/account/pacct).
When we start a script with either ./script_name or bash script_name, the process ...
0
votes
1answer
29 views
Is this time related process accounting stats gathering appropriate?
Based on sys/acct.h (V1, not V3) I need to gather some user usage statistics based on a parser that parser the acct file line by line. The parser will run and parse the entire file every N seconds and ...