clam is a cluster/local activity monitor
Currently it can display CPU usage for CPUs on the local machine.
Tested with Python 3.7.6
Install with system-wide Python:
pip3 install -r requirements.txtInstall within a virtual environment (requires virtualenv Python package):
virtualenv venv
source venv/bin/activate
pip3 install -r requirements.txtCluster
python3 clam.py --nodes host1 [host2 host3 ... ]This will show overall CPU activity for each node provided.
Local
python3 clam.py --localThis will show CPU activity of all logical CPUs on the local machine.