bumblebee-status/bumblebee/modules/cpu.py
Tobias Witek fca3171556 [modules] Allow modules to provide default click actions
Pass the "output" object to the modules' constructor to allow them to
define their own callbacks.
Any user-provided callbacks take precedence and override those of the
module.
2016-11-01 08:09:10 +01:00

29 lines
671 B
Python

import bumblebee.module
import psutil
def usage():
return "cpu"
def notes():
return "Warning is at 70%, Critical at 80%."
def description():
return "Displays CPU utilization across all CPUs."
class Module(bumblebee.module.Module):
def __init__(self, output, 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