1 Commits

Author SHA1 Message Date
f5225f88f9 Add max CPU percentage 2013-07-17 18:48:55 -04:00

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.