I want to repeat this question using python. Reason is I have access to 10 nodes in a cluster and each node is not identical. They range in performance and I want to find which is the best computer to use remotely based on memory and cpu-speed/cores available.

EDIT: Heck, even just a command line interface would be useful. Any quick and dirty solutions?

link|improve this question

72% accept rate
cat /proc/cpuinfo will work. I can call it from python if i need. – vgm64 Aug 13 '09 at 18:47
feedback

1 Answer

up vote 1 down vote accepted

Take a look at the SIGAR library which has an extensive API for collecting system data cross-platform. It also has libraries available in many languages (Python, Java, Erlang, Ruby, etc).

link|improve this answer
I don't have root access for any installs on the nodes. Will that be an issue? – vgm64 Aug 13 '09 at 18:13
No, I've used the Java version and it was just a JAR file I dropped in place. – ars Aug 13 '09 at 18:58
feedback

Your Answer

 
or
required, but never shown

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