Add max CPU percentage

This commit is contained in:
Jim Paris 2013-07-17 18:48:55 -04:00
parent 32e59310ef
commit f5225f88f9

View File

@ -239,6 +239,7 @@ class ProcessManager(object):
# Retrieve info for system
info["system"]["cpu_percent"] = sum(psutil.cpu_percent(0, percpu=True))
info["system"]["cpu_max"] = 100.0 * psutil.NUM_CPUS
info["system"]["procs"] = len(psutil.get_pid_list())
# psutil > 0.6.0's psutil.virtual_memory() would be better here,
# but this should give the same info.