A very simple python script to log the CPU and Memory consumption of submitted cluster jobs.
Simplest option is to install via PyPi:
pip install ClusterMonitorAlternatively you can also clone this repository and use the scripts inside the ClusterMonitor directory.
To start recording use the cpu_ram_log.py script. It requires 3 arguments:
-uwhich corresponds to your username.-owhich specifies the output file (in tsv format)--intervalwhich specifies the time (in seconds) over which the CPU and RAM usage gets averaged
Example:
pythonClusterMonitor/cpu_ram_log.py-unickhir-ocpu_ram.log--interval5The script can simply be included in your cluster job submittion like this:
#!/bin/bash#SBATCH --job-name=Example_run
sambamba sort -t 3 some_bam.bam &
MainScript=$!
python cpu_ram_log.py -u nickhir -o cpu_ram.log --interval 5 &wait$MainScript
pkill -P $$If you used pip to install the package, cpu_ram_log and visualize_log will be added to your PATH variable, thus you can simple use:
cpu_ram_log -u nickhir --interval 5 -o cpu_ram.logAfterwards the resulting log file can be plotted (for that matplotlib is needed).
For that use the visualize_log.py script which needs 2 arguments:
-iwhich specifies the path to the log file which was created withcpu_ram_log.py-owhich specifies the path to the resulting PDF which contains a plot for the CPU and RAM usage.
Example:
pythonvisualize_log.py-icpu_ram.log-ocpu_ram_visualization.pdf