- 先找一个想要查看的进程。比如我这里想看我nginx执行的时间,先查看有哪些进程。
ps -ef | grep nginx
输出:
root 8186 5143 0 21:12 pts/0 00:00:00 grep --color=auto nginx
root 10971 9407 0 4月28 ? 00:00:00 nginx: master process ./nginx/sbin/nginx
65534 12381 10971 0 4月29 ? 00:04:55 nginx: worker process
- 看下进程
10971
的开始时间
ps -p 10971 -o lstart
#输出
STARTED
Tue Apr 28 20:24:36 2020
- 看下进程
10971
的执行时间
ps -p 10971 -o etime
#输出
ELAPSED
29-01:27:33
4.查看进程10971
开始时间,结束时间
ps -p 10971 -o lstart,etime
#输出
STARTED ELAPSED
Tue Apr 28 20:24:36 2020 29-01:29:26
网友评论