Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_cpu
152113
File | Description |
---|---|
check_cpu.txt | Python plugin to report the amount of idle CPU on unix based systems. |
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
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.
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)
bykovacsbalu, November 5, 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()
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()