Python module to cross platform monitor system statistics?

513 views Asked by At

I'm looking for a python module that will allow me to monitor and log the system statistics of 4 computers. I need this module to be able to:

  • Work on at least Windows and Debian Linux
  • Monitor disk usage, memory usage, network usage, cpu load, and core temperature (if available)

Unfortunately, I haven’t been able to find a module that satisfies either qualifier, and I want to avoid wrapping python around another language to accomplish this.

If anyone has anything remotely close to what I'm describing, I'd greatly appreciate it.

Thanks

2

There are 2 answers

3
woot On BEST ANSWER

Have you looked at Munin? You can build all sorts of plugins in Python as well, plus many already exist.

0
julio On

Maybe WMI is what you need. See link below for reference.

Python_WMI