Linux Per-Process CPU Runtime Statistics: Difference between revisions
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
total-time-proc-plus-children = total-time-proc + [[/proc/pid/stat#Field_16_-_cutime|cutime]] + [[/proc/pid/stat#Field_17_-_cstime|cstime]] | total-time-proc-plus-children = total-time-proc + [[/proc/pid/stat#Field_16_-_cutime|cutime]] + [[/proc/pid/stat#Field_17_-_cstime|cstime]] | ||
Running time for process (in seconds) | |||
process-running-time(seconds) = [[/proc/uptime#System_Uptime|system-uptime]](seconds) - (starttime / [[Linux_7_General_Concepts#USER_HZ|USER_HZ]]) |
Revision as of 00:56, 2 March 2018
External
Internal
Overview
To determine total time spend by the process in user and kernel modes:
total-time-proc = utime + stime
If we want to include time from children processes:
total-time-proc-plus-children = total-time-proc + cutime + cstime
Running time for process (in seconds)
process-running-time(seconds) = system-uptime(seconds) - (starttime / USER_HZ)