Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
Speed fan
106290
File | Description |
---|---|
check_sfan.pl | Reads temperature/voltage/fans peed given by the speedfan software (windows OS) Requires speedfan: http://www.almico.com/speedfan.php and the latest SFSNMP from http://code.bastart.eu.org/sfsnmp |
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!
Reads temperature/voltage/fans peed given by the speedfan software (windows OS)
Requires speedfan: http://www.almico.com/speedfan.php
and the latest SFSNMP from http://code.bastart.eu.org/sfsnmp
Requires speedfan: http://www.almico.com/speedfan.php
and the latest SFSNMP from http://code.bastart.eu.org/sfsnmp
Reviews (2)
byfarid, April 21, 2016
Since SFSNMP is not developed anymore, I wrote my own plugin to check temperatures on Windows hosts. My plugin uses Open Hardware monitor instead of Speedfan.
My plugin is named check_ohm_temperatures and can be found on this site.
I don't want to rate this plugin since it's not the plugins fault that it does not work anymore, so I give it Average.
My plugin is named check_ohm_temperatures and can be found on this site.
I don't want to rate this plugin since it's not the plugins fault that it does not work anymore, so I give it Average.
although only temp variable worked for me (not voltage or speedfan) but atleast it produced an output for temperature. here is some advice so not to repeat my mistakes: in nagios define as:
define command{
command_name check_speedfan
command_line /usr/bin/perl $USER1$/check_sfan.pl $ARG1$ $ARG2$ $ARG3$ $ARG4$ $ARG5$ $ARG6$
}
and service as:
define service{
use generic-service
host_name myworkstation
service_description cpu temperature 2
check_command check_speedfan!temp!10.1.1.29!test!5!"x>40||x45||x}
if you are running win 2003 64bit then don't do my mistake and just run injector.exe instead of speedfan.exe so it communicates with the snmp software mentioned by the author (bastart)
define command{
command_name check_speedfan
command_line /usr/bin/perl $USER1$/check_sfan.pl $ARG1$ $ARG2$ $ARG3$ $ARG4$ $ARG5$ $ARG6$
}
and service as:
define service{
use generic-service
host_name myworkstation
service_description cpu temperature 2
check_command check_speedfan!temp!10.1.1.29!test!5!"x>40||x45||x}
if you are running win 2003 64bit then don't do my mistake and just run injector.exe instead of speedfan.exe so it communicates with the snmp software mentioned by the author (bastart)