2016-10-31 12:16:23 +01:00
|
|
|
import bumblebee.module
|
|
|
|
import psutil
|
|
|
|
|
2016-10-31 16:08:03 +01:00
|
|
|
def usage():
|
|
|
|
return "cpu"
|
|
|
|
|
|
|
|
def notes():
|
|
|
|
return "Warning is at 70%, Critical at 80%."
|
|
|
|
|
|
|
|
def description():
|
|
|
|
return "Displays CPU utilization across all CPUs."
|
|
|
|
|
2016-10-31 12:16:23 +01:00
|
|
|
class Module(bumblebee.module.Module):
|
|
|
|
def __init__(self, args):
|
|
|
|
super(Module, self).__init__(args)
|
|
|
|
self._perc = psutil.cpu_percent(percpu=False)
|
|
|
|
|
|
|
|
def data(self):
|
|
|
|
self._perc = psutil.cpu_percent(percpu=False)
|
|
|
|
|
|
|
|
return "{:05.02f}%".format(self._perc)
|
|
|
|
|
|
|
|
def warning(self):
|
|
|
|
return self._perc > 70
|
|
|
|
|
|
|
|
def critical(self):
|
|
|
|
return self._perc > 80
|
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|