This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
""" | |
scontrol-show-node - python equivalent to `scontrol show node`. | |
It also takes an optional node as an argument. | |
""" | |
import sys | |
from datetime import datetime | |
from operator import itemgetter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# vim: set ts=4 sw=4 et | |
""" | |
slurm_core_states.py - A read plugin that will dispatch the core cpu states | |
returned by the Slurm sinfo command. | |
""" | |
import collectd | |
import signal |
NewerOlder