方法一:psutil
这里使用了psutil的库使用前需要pip一下,而这玩意儿直接抓cpu好像会因为某些原因效果不理想,所以抄了网上的代码取10次的平均值.
# !/user /env /bin python3
# !author: Luwdig
import psutil
import time
import re, sys
def processinfo(x):
p = psutil.process_iter()
tlp = 0
try:
for r in p:
aa = str(r)
f = re.compile(x, re.I)
if f.search(aa):
tlp = int(aa.split('pid=')[1].split(',')[0])
# 检索pid列表并获取传入值的pid
return tlp
except (psutil.NoSuchProcess):
print('Ransomware process is caught, but the process does '
'not exist (PID: %d)' % aa.pid)
def getinfo(tlp):
p = psutil.Process(tlp)
cpu_list = []
for i in range(10):
p_cpu = p.cpu_percent(interval=0.1)
cpu_list.append(p_cpu)
cpu = 0.00
cpu = float(sum(cpu_list))/len(cpu_list)/10
# 循环10次cpu使用值并取平均值
try:
pid = p.pid
name = p.name()
Memory = p.memory_percent(memtype="rss") / 2
localtime = time.strftime('%H:%M:%S', time.localtime(time.time()))
# 取进程pid 进程名 进程内存
except IOError as e:
print(e)
else:
# return pid, name, Memory, cpu, time
print("Time:%s" % (localtime), "PID:%s" % (pid), "Name:%s" % (name),
"Memory=%.3f%%" % (Memory), "CPU=%.2f%%" % (cpu * 2))
if __name__ == "__main__":
while 0 < 1:
s = processinfo('uibot.exe')
getinfo(s)
if False:
print("打开程序")
else:
continue
方法二:top
import sys
import time
import os
import psutil
# 设置app名称,名称中不允许有空格,否则后面取top结果会错位
if len(sys.argv) < 2:
app_name = "MyDemo"
else:
app_name = str(sys.argv[1])
# 根据app_name查找进程id
pid = None
for proc in psutil.process_iter():
if app_name in proc.name():
pid = proc.pid
print("pid = [%s]" % str(pid))
# 拼接top命令,-pid 制定进程id,-l 查询3次(小于3次不准确),tail -n 获取最后一次的结果, awk print 输出第三列、第八列结果(对应%cpu和mem)
get_cpu_mem = "top -pid " + str(pid) + " -l 3 | tail -n 1 | awk '{print $3,$8}'"
print("execute cmd = [%s]" % str(get_cpu_mem))
# monitor process and write data to file
interval = 30 # polling seconds
with open("process_monitor_" + app_name + '_' + str(pid) + ".csv", "a+") as f:
f.write("time,cpu%,mem%\n") # titles
while True:
current_time = time.strftime('%Y%m%d%H%M%S', time.localtime(time.time()))
current_cpu_mem = os.popen(get_cpu_mem).read().strip()
cpu = current_cpu_mem.split(" ")[0]
mem = current_cpu_mem.split(" ")[1]
line = current_time + ',' + str(cpu) + ',' + str(mem)
print(line)
f.write(line + "\n")
time.sleep(interval)