Is there a scripting library preferably in Python/Perl/Ruby that allows you to get information on disk, load, a list of processes running, cpu usage in a standard way?

I always end up parsing df, uptime, ps etc. Given that these differ on different Unix flavors and need to be done in a totally different way on Windows, I would have thought that someone would have already done this.

link|improve this question

50% accept rate
I think someone gave a talk at an Australian Railscamp about one. I can't remember any details, though. – Andrew Grimm Jan 4 at 2:40
feedback

3 Answers

up vote 2 down vote accepted

(ruby) Daniel Berger maintains a lot of gems in this field. Look for sys-cpu, sys-uptime, sys-uname, sys-proctable, sys-host, sys-admin, sys-filesystem - all multi-platform AFAIK.

link|improve this answer
feedback

Most simple is monit: http://mmonit.com/monit/

A step up, as @lawrencealan mentioned, is Nagios: http://nagios.org/

And here's a new interesting effort: http://amon.cx/

link|improve this answer
All three are not scripting libraries that can easily be incorporated into own code - or? – Heiko Rupp Jan 8 at 11:27
Just in case I am missing something. Do any of the packages come with a scripting library that exposes the system info in a standard way? – Stuart Woodward Jan 8 at 21:33
Not that I know of -- I guess I didn't understand what you were looking for. :) – John Bachir Jan 9 at 0:46
feedback

Have you looked into Nagios? http://nagios.org/

There are an abundance of agents: http://exchange.nagios.org/directory/Addons/Monitoring-Agents

link|improve this answer
Just in case I am missing something. Does Nagios come with a scripting library that exposes the system info in a standard way? – Stuart Woodward Jan 8 at 21:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.