Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Check_Temperature

Rating
3 votes
Favoured:
0
Current Version
1.0
Last Release Date
2012-07-07
Compatible With
  • Nagios XI
License
MPL
Hits
70881
Files:
FileDescription
check_temperature_windows.zipcheck_temperature_windows.zip
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
This script will readout the CPU temperature on a windows system
This script will readout the CPU temperature on a windows system using openharwaremonitorreport (http://code.google.com/p/open-hardware-monitor/issues/detail?id=230 )

derived from openhardwaremonitor (http://openhardwaremonitor.org/)
Reviews (3)
byfarid, April 21, 2016
I did not manage to get this plugin to work on my hardware. I suspect that it has to do with the now very old OpenHardwareMonitorReport supplied with this plugin.

While investigating this problem I decided to write my own plugin also using the Open Hardware monitor project.
My plugin is named check_ohm_temperatures and can also be found on this site.

Thank you jeroensteenhuis for the idea of using openhardwaremonitor.org.
bypintxoj, February 25, 2015
For those who try this script and always send Critical to nagios i made this fix and it works now. Look at the bottom of the script and search for this:

if (intMaxTemp = intTemperatureWarning) then return_code = WARNING
if (intMaxTemp >= intTemperatureCritical) then return_code = CRITICAL
if (intMaxTemp = cstr(intTempCritical)) then return_code = 2
if (intMaxTemp rning = 55
intTempCritical = 70

Change that values as you need.

Now the script works, as i say, without arguments, but with my knowledge of scripting is quite more than nothing.
byDennisPR, December 5, 2012
1 of 1 people found this review helpful
The script doesn't look at warning & critical values ?
It doesn't look at any of the possible vars (intTempWarning, intTempCritical,intTemperatureWarning or intTemperatureCritical) and always returns critical (2)