Merge branch 'newModuleInformation' into production

This commit is contained in:
Mokaddem 2017-02-28 16:51:08 +01:00
commit dadc872f9f

View file

@ -644,6 +644,12 @@ def fetchQueueData():
if len(CPU_TABLE[moduleNum]) > args.refresh*10:
CPU_TABLE[moduleNum].pop()
mem_percent = CPU_OBJECT_TABLE[int(moduleNum)].memory_percent()
except psutil.NoSuchProcess:
del CPU_OBJECT_TABLE[int(moduleNum)]
del CPU_TABLE[moduleNum]
cpu_percent = 0
cpu_avg = cpu_percent
mem_percent = 0
except KeyError:
try:
CPU_OBJECT_TABLE[int(moduleNum)] = psutil.Process(int(moduleNum))