When running top
on an Apache server, what is the time format for the output?
For instance, is it minute:second.second
?
https://i.stack.imgur.com/fMbcf.png
Edit:
I'm running on Ubuntu 14.04 and the header of the column is TOP+
.
When running top
on an Apache server, what is the time format for the output?
For instance, is it minute:second.second
?
https://i.stack.imgur.com/fMbcf.png
Edit:
I'm running on Ubuntu 14.04 and the header of the column is TOP+
.
You've omitted the column header line, and you also don't say what operating system you're using, but I'm assuming Linux and that the heading for the CPU time column is TIME+
. From the Linux top
manpage:
29. TIME -- CPU Time Total CPU time the task has used since it started. When 'Cumulative mode' is On, each process is listed with the cpu time that it and its dead children have used. You toggle 'Cumulative mode' with 'S', which is both a command-line option and an interactive command. See the 'S' interactive command for additional information regarding this mode. 30. TIME+ -- CPU Time, hundredths The same as 'TIME', but reflecting more granularity through hundredths of a second.
So the format in that column is minutes:seconds.hundredths-of-seconds
.