I would like to avoid doing this by launching the process from a monitoring app.
12 Answers
On Linux with the ps from procps(-ng) (and most other systems since this is specified by POSIX):
ps -o etime= -p "$$"
Where $$ is the PID of the process you want to check. This will return the elapsed time in the format [[dd-]hh:]mm:ss.
Using -o etime tells ps that you just want the elapsed time field, and the = at the end of that suppresses the header (without, you get a line which says ELAPSED and then the time on the next line; with, you get just one line with the time).
Or, with newer versions of the procps-ng tool suite (3.3.0 or above) on Linux or on FreeBSD 9.0 or above (and possibly others), use:
ps -o etimes= -p "$$"
(with an added s) to get time formatted just as seconds, which is more useful in scripts.
On Linux, the ps program gets this from /proc/$$/stat, where one of the fields (see man proc) is process start time. This is, unfortunately, specified to be the time in jiffies (an arbitrary time counter used in the Linux kernel) since the system boot. So you have to determine the time at which the system booted (from /proc/stat), the number of jiffies per second on this system, and then do the math to get the elapsed time in a useful format.
It turns out to be ridiculously complicated to find the value of HZ (that is, jiffies per second). From comments in sysinfo.c in the procps package, one can A) include the kernel header file and recompile if a different kernel is used, B) use the posix sysconf() function, which, sadly, uses a hard-coded value compiled into the C library, or C) ask the kernel, but there's no official interface to doing that. So, the ps code includes a series of kludges by which it determines the correct value. Wow.
So it's convenient that ps does that all for you. :)
(Note: stat -c%X /proc/$$ does not work. See this answer from Stéphane Chazelas to a related question.)
-
2Hi! Is
etime=a typo? I can only findetimein the man pages.Kent Pawar– Kent Pawar2013-06-27 13:01:35 +00:00Commented Jun 27, 2013 at 13:01 -
19@KentPawar It's not a typo. The empty
=suppresses the header. Try it without, or tryps -p $$ -o etime="Silly Header Here"mattdm– mattdm2013-06-27 13:28:59 +00:00Commented Jun 27, 2013 at 13:28 -
4ps -p $(pgrep find) -o etime=mafrosis– mafrosis2013-09-11 23:07:02 +00:00Commented Sep 11, 2013 at 23:07
-
1Nice. I prefer
etimesmyself as then it's machine readableAsfand Qazi– Asfand Qazi2015-07-15 09:35:28 +00:00Commented Jul 15, 2015 at 9:35 -
1@alexmurray That just calls
sysconf()and therefore gives you the hard-coded value from the C library, as noted, doesn't it?mattdm– mattdm2016-04-01 01:55:07 +00:00Commented Apr 1, 2016 at 1:55
Portable:
% ps -o stime,time $$
STIME TIME
Jan30 00:00:06
i.e. that shell was started on January 30 and totaled about 6 seconds of CPU time.
There may be more precise or more parseable but less portable ways to get this information. Check the documentation of your ps command or your proc filesystem.
Under Linux, this information lives in /proc/$pid/stat.
awk '{print "CPU time: " $14+$15; print "start time: " $22}' /proc/$$/stat
The CPU time is in jiffies; I don't know offhand how to find the jiffy value from the shell. The start time is relative to the boot time (found in /proc/uptime).
-
3Finding the value of HZ (that is, jiffies per second) turns out to be ridiculously complicated! From comments in the
sysinfo.cin the procps package, one can a) include the kernel header file (and recompile if a different kernel is used, b) use the posix sysconf() function, which, sadly, uses a hard-coded value compiled into the c library, or c) ask the kernel, and there's no official interface to doing that. So, the code includes a series of kludges by which it determines the correct value. Wow.mattdm– mattdm2011-02-22 21:54:32 +00:00Commented Feb 22, 2011 at 21:54 -
1The
psmanpage states thattimeis "cumulative CPU time". I think what the OP was looking for isetime, or "the elapsed time since the process was started". pubs.opengroup.org/onlinepubs/000095399/utilities/ps.htmlrinogo– rinogo2014-04-23 20:35:30 +00:00Commented Apr 23, 2014 at 20:35 -
1Not so "portable" after all: "ps: stime: keyword not found" on FreeBSD. It does at least support
etime, though.n.st– n.st2016-05-23 11:34:44 +00:00Commented May 23, 2016 at 11:34 -
This is giving me a very weird time - 5 minutes less on a 22-min running process. The top rated answer is correct, this is something else.Steve Horvath– Steve Horvath2023-11-07 06:43:02 +00:00Commented Nov 7, 2023 at 6:43
-
The start time is also in jiffies; you can get the jiffies via
getconf CLK_TCK, in a shell.maxschlepzig– maxschlepzig2025-10-19 21:57:28 +00:00Commented Oct 19 at 21:57
If you dont know the PID of the process, just the name:
ps -eo pid,comm,cmd,start,etime | grep -i <name of the process>
If you know the PID:
ps -o pid,comm,cmd,start,etime -p <PID>
-
3should probably add a grep -v grep.Engineer2021– Engineer20212014-06-30 20:07:44 +00:00Commented Jun 30, 2014 at 20:07
-
1
ps -o pid,comm,cmd,start,etime -p Xto look at PID X.codeforester– codeforester2018-07-09 17:06:26 +00:00Commented Jul 9, 2018 at 17:06 -
@codeforester added your comment and improved the answertakobaba– takobaba2022-07-20 04:03:45 +00:00Commented Jul 20, 2022 at 4:03
ps takes a -o option to specify the output format, and one of the available columns is etime. According to the man page:
etime - elapsed time since the process was started, in the form [[dd-]hh:]mm:ss.
Thus you can run this to get the PID and elapsed time of every process:
$ ps -eo pid,etime
If you want the elapsed time of a particular PID (e.g. 12345), you can do something like:
$ ps -eo pid,etime | awk '/^12345/ {print $2}'
(Edit: Turns out there's a shorter syntax for the above command; see mattdm's answer)
Unsure why this has not yet been suggested: on Linux you can stat() the /proc/[nnn] directory for your PID.
This behavior is explicitly designed to return the process start time, which it can do at high resolution, and which the kernel can do accurately without the jiffies hacks since the kernel can (obviously) simply check the relevant information. The access, data-modification and status change fields all return the process start time.
Best of all, you can use stat(1) at the shell, or the appropriate binding to stat(2) from $favorite_programming_language, so you may not even need to launch an external process.
NOTE that this does not work with /usr/compat/linux/proc on FreeBSD; the access/modification/status-change times returned are the current time, and the birth time is the UNIX epoch. Quite stupid the support isn't there if you ask me.
-
Where in the output of stat do I see the info? I only see Access, Modify, and Change.tshepang– tshepang2017-01-08 22:52:16 +00:00Commented Jan 8, 2017 at 22:52
-
1@Tshepang Note that those values are all the same, and they are the process start time. You still have to do the math, but this is definitely better than trying to figure out jiffies as noted in my answer.mattdm– mattdm2017-03-02 16:53:16 +00:00Commented Mar 2, 2017 at 16:53
-
You call it like this:
stat /proc/4480This will give you the Birth, Change, Modify and Access dates of the process. If you need the process id, just use "top"user890332– user8903322019-08-21 17:05:34 +00:00Commented Aug 21, 2019 at 17:05 -
1No, that's plain wrong, the mtime of those files are the time the files in
/procwere instantiated, which will be whenever something tried to list the directories there. Nothing to do with the process start time. See also When was a process startedStéphane Chazelas– Stéphane Chazelas2023-04-25 11:42:27 +00:00Commented Apr 25, 2023 at 11:42
If you can run time and then execute a command you will get exactly what you are looking for. You cannot do this against an already-running command.
[0] % time sleep 20
sleep 20 0.00s user 0.00s system 0% cpu 20.014 total
-
Do you know how can I do it on a running process monitoring until it ends?lrkwz– lrkwz2012-11-21 22:56:07 +00:00Commented Nov 21, 2012 at 22:56
$ ps -eo lstart get start time
$ ps -eo etime get duration/elapsed time
$ ps -eo pid,lstart,etime | grep 61819
PID STARTED ELAPSED
61819 Mon Sep 17 03:01:35 2018 07:52:15
61819 is the process id.
-
1Use of lstart can be problematic, it skews - unix.stackexchange.com/questions/274610/…2019-06-20 15:05:01 +00:00Commented Jun 20, 2019 at 15:05
you can get the start time of the process by looking at the stat of the stat file produced by proc, format it using date and subtract it from the current time:
echo $(( $(date +%s) - $(date -d "$(stat /proc/13494/stat | grep Modify | sed 's/Modify: //')" +%s) ))
where 13494 is your process' pid
-
Is it guaranteed that the mtime of a processes
/proc/$pid/statpseudo file equals its start time?maxschlepzig– maxschlepzig2025-10-19 22:12:04 +00:00Commented Oct 19 at 22:12
Time elapsed in seconds: expr $(date +"%s") - $(stat -c%X /proc/<PID HERE>)
-
This seems to me to be a very slight variation of one that mattdm mentioned already:
date +%s --date="now - $( stat -c%X /proc/$$2019-03-28 17:17:35 +00:00Commented Mar 28, 2019 at 17:17 -
That one didn't work for me on my very minimal Alpine docker instance so I wrote this oneShardj– Shardj2019-03-28 17:31:29 +00:00Commented Mar 28, 2019 at 17:31
-
No, timestamps in
/proc/pidhave nothing to do with the process start time. See comments to the other answer above and When was a process startedStéphane Chazelas– Stéphane Chazelas2023-04-25 11:46:22 +00:00Commented Apr 25, 2023 at 11:46
A handy function based on "ps -o etime=" and "bc" to help with the maths and the zero left padded numbers.
Give it the pid and get the running minutes back.
function running_time (){
# correct up to 100 days! #08:28:40 #53:32 #15-01:23:00
p=$1 ; i=$(ps -o etime= $p) ; i=$(echo $i) ;
len=${#i}
[[ $len == 5 ]] && i="00-00:$i" ; [[ $len == 8 ]] && i="00-$i"
[[ $len == 10 ]] && i="0$i"
mins=$(echo ${i:0:2}*24*60+${i:3:2}*60+${i:6:2}|bc)
echo $mins
}
I wanted it in seconds and I came up with (pure bash):
runtime=$(ps -o etime= -p <pid>)
runtime=$(date -d "1970-01-01 $((10#${runtime: -8: 2})):$((10#${runtime: -5: 2})):$((10#${runtime: -2: 2}))Z + $((10#$(echo "$runtime" | grep -oP "[0-9]+(?=-)"))) days" +%s)
The problem with etime is, that some values are optional.
Because of that I used $((10#string)) to convert empty strings to 0 and by that the final date string will be something like this for a short running process:
date -d "1970-01-01 0:0:7Z + 0 days" +%s
and like this for a long runnning processs:
date -d "1970-01-01 12:45:11 + 253 days" +%s
Using date to convert to seconds was inspired by this answer.
On FreeBSD, you have to use the command keyword instead of comm:
root@freebsd:~ # ps x -o etime,command | grep -e sshd -e syslogd -e cron
53-00:42:12 /usr/sbin/syslogd -s
57-01:26:52 /usr/sbin/cron -s
10:02:09 sshd: /usr/sbin/sshd [listener] 0 of 10-100 startups (sshd)
20:29 sshd: charlie [priv] (sshd)
00:00 grep -e sshd -e syslogd -e cron
The first column now contains the information on how long the process is running. It is in the following format:
[days-][hours:]minutes:seconds
You may want to use etimes instead of etime to get that information in seconds.