python如何记录运行时间_如何在python中检索进程开始时间(或正常运行时间)

如果您是在试图测量的python程序中执行此操作,则可以执行以下操作:import time

# at the beginning of the script

startTime = time.time()

# ...

def getUptime():

"""

Returns the number of seconds since the program started.

"""

# do return startTime if you just want the process start time

return time.time() - startTime

否则,您别无选择,只能解析ps或进入/proc/pid。一个很好的获取经过时间的方法是:ps -eo pid,etime | grep $YOUR_PID | awk '{print $2}'

这将只以以下格式打印经过的时间,因此应该很容易解析:days-HH:MM:SS

(如果它运行了不到一天,它只是HH:MM:SS)

开始时间如下:ps -eo pid,stime | grep $YOUR_PID | awk '{print $2}'

不幸的是,如果您的进程没有在今天开始,这只会给出它开始的日期,而不是时间。

最好的方法是得到经过的时间和当前时间,然后做一些计算。下面是一个python脚本,它以PID作为参数,并为您执行上述操作,打印出进程的开始日期和时间:import sys

import datetime

import time

import subprocess

# call like this: python startTime.py $PID

pid = sys.argv[1]

proc = subprocess.Popen(['ps','-eo','pid,etime'], stdout=subprocess.PIPE)

# get data from stdout

proc.wait()

results = proc.stdout.readlines()

# parse data (should only be one)

for result in results:

try:

result.strip()

if result.split()[0] == pid:

pidInfo = result.split()[1]

# stop after the first one we find

break

except IndexError:

pass # ignore it

else:

# didn't find one

print "Process PID", pid, "doesn't seem to exist!"

sys.exit(0)

pidInfo = [result.split()[1] for result in results

if result.split()[0] == pid][0]

pidInfo = pidInfo.partition("-")

if pidInfo[1] == '-':

# there is a day

days = int(pidInfo[0])

rest = pidInfo[2].split(":")

hours = int(rest[0])

minutes = int(rest[1])

seconds = int(rest[2])

else:

days = 0

rest = pidInfo[0].split(":")

if len(rest) == 3:

hours = int(rest[0])

minutes = int(rest[1])

seconds = int(rest[2])

elif len(rest) == 2:

hours = 0

minutes = int(rest[0])

seconds = int(rest[1])

else:

hours = 0

minutes = 0

seconds = int(rest[0])

# get the start time

secondsSinceStart = days*24*3600 + hours*3600 + minutes*60 + seconds

# unix time (in seconds) of start

startTime = time.time() - secondsSinceStart

# final result

print "Process started on",

print datetime.datetime.fromtimestamp(startTime).strftime("%a %b %d at %I:%M:%S %p")

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值