Linux

check_cpu

Description:

Python plugin to report the amount of idle CPU on unix based systems.

Current Version

Last Release Date

June 16, 2009

Compatible With


Project Files
Project Notes
I use this in conjunction with a plugin to monitor the user count. Obsess over both and utilise the gathered info in capacity management. I prefer this to other cpu checks as it returns an average figure over a time period rather than a snapshot. Requires Python 2.2 or above (or Optik python plugin for python 2.0+) Currently tested on RH 7.x, 8.0, 9.0, Fedora Core1, Fedora Core2, Fedora Core3, FreeBSD, OpenBSD, NetBSD, (K)Ubuntu, Slackware. Full testing required for SUSE & Debian, though I believe that it works under these OSes. Looking for people to test under other unix systems. Solaris supported, but requires Python which is not part of the native install. Current version is 0.4.0.
Reviews (1) Add a Review
Patch for trimming idLine and lastLine
by kovacsbalu, November 30, 2011

There was bug when the first item (r) is not one char. That is a simple fix for it: --- check_cpu.py.orig 2011-11-05 20:23:46.000000000 +0100 +++ check_cpu.py 2011-11-05 20:14:00.000000000 +0100 @@ -117,13 +117,13 @@ statLines = string.split( statOut, 'n') -lastLine = statLines[-2] +lastLine = statLines[-2].strip() n = len(statLines) for i in range(0, n): idcheck = re.search("id", statLines[i]) if idcheck: - idLine = statLines[i] + idLine = statLines[i].strip()



Add a Review

You must be logged in to submit a review.

Thank you for your review!

Your review has been submitted and is pending approval.

Recommend

To:


From:


Thank you for your recommendation!

Your recommendation has been sent.

Project Stats
Rating
4 (1)
Favorites
0
Views
152,158