As mentioned in the title I am trying to find the different times listed below for my process:
Wall Time Spent Executing - The amount of time the process spent from start to finish. (i.e. the Real Time)
Total Time Spent on CPU - The amount of time the process spent executing instructions on the CPU plus the amount of time that the kernel was doing work on behalf of the process. (i.e. the Profile Time)
Time Spent in User Space - The amount of time the process spent executing instructions on the CPU. (i.e. the Virtual Time)
Time Spent in Kernel Space - The amount of time the kernel spent doing work on behalf of the process.
While searching I have found information on linux perf but I am unsure on how to use the package.