[BACK]Return to README CVS log [TXT][DIR] Up to [local] / nagios / check_hw_sensors

Diff for /nagios/check_hw_sensors/README between version 1.1 and 1.8

version 1.1, 2006/05/03 22:56:06 version 1.8, 2009/11/09 22:51:01
Line 1 
Line 1 
 check_hw_sensors plugin for Nagios monitors sysctl hw.sensors on OpenBSD  check_hw_sensors - monitors sysctl hw.sensors on OpenBSD
     check_hw_sensors (-f [<FILENAME>]|(-s <hw.sensors id> -w limit -c limit))      check_hw_sensors [-i] (-f [<FILENAME>]|(-s <hw.sensors id> [-w limit] [-c limit]))
   
 Usage:  Usage:
       -i, --ignore-status
           Don't automatically check the status of sensors that report it.
     -f, --filename=FILE      -f, --filename=FILE
         FILE to load checks from (defaults to /etc/sensorsd.conf)          FILE to load checks from (defaults to /etc/sensorsd.conf)
     -s, --sensor=ID      -s, --sensor=ID
         ID of a single sensor.  "-s 0" means hw.sensors.0.          ID of a single sensor.  "-s kate0.temp0" means hw.sensors.kate0.temp0
           Overrides --filename.
     -w, --warning=RANGE or single ENTRY      -w, --warning=RANGE or single ENTRY
         Exit with WARNING status if outside of RANGE or if != ENTRY          Exit with WARNING status if outside of RANGE or if != ENTRY
     -c, --critical=INTEGER      -c, --critical=RANGE or single ENTRY
         Exit with CRITICAL status if outside of RANGE or if != ENTRY          Exit with CRITICAL status if outside of RANGE or if != ENTRY
   
     -h (--help)       usage help  FILE is in the same format as sensorsd.conf(5) plus some additional
   entries.  These additional entries in the file are ignored by
   sensorsd(8) this means you can use the same config file for check_hw_sensors
   as well as sensorsd(8).
   
 FILE is in the same format as sensorsd.conf(5).  These additional  
 entries in the file are ignored by sensorsd(8).  
   
 check_hw_sensors understands the following entries:  check_hw_sensors understands the following entries:
   
     low, high, crit, warn, crit.low, crit.high, warn.low, warn.high      low, high, crit, warn, crit.low, crit.high, warn.low, warn.high,
       ignore, status
   
 An ENTRY depends on the type.  The descriptions in sensorsd.conf(5)  An ENTRY depends on the type.  The descriptions in sensorsd.conf(5)
 can be used when appropriate, or you can use the following:  can be used when appropriate, or you can use the following:
   
     volts_dc, fanrpm or raw - Anything that includes digits.      fanrpm, volts_dc, amps, watthour, amphour, integer (raw), percent,
     Both the value of the check and the value of the sensor      lux or timedelta - Anything that includes digits.  Both the value of
     response that are not either a digit or period are stripped      the check and the value of the sensor response that are not either a
     and then the two resultant values are compared.      digit or period are stripped and then the two resultant values are
       compared.
   
     temp - Can be as above, but if the entry has an F in it,      temp - Can be as above, but if the entry has an F in it,
     it compares farenheit, otherwise it uses celcius.      it compares farenheit, otherwise it uses celcius.
   
     indicator or drive - does a case sensitive match of each      indicator or drive - does a case sensitive match of each
     entry in the comma separated list and if it does not match      entry in the comma separated list and if it does not match
     any of the entries, it matches the status.      any of the entries, it sets the status.
   
 The entries 'crit' or 'warn' (or the -c or -w on the command line)  The entries 'crit' or 'warn' (or the -c or -w on the command line)
 may be a RANGE or a comma separated list of acceptable values.  may be a RANGE or a comma separated list of acceptable values.
Line 43 
Line 48 
   
 A RANGE is a low ENTRY and a high ENTRY separated by a colon (:).  A RANGE is a low ENTRY and a high ENTRY separated by a colon (:).
 It can also be low: or :high with the other side left blank to only  It can also be low: or :high with the other side left blank to only
 make the single check..  make the single check.
   
 check_hw_sensors (nagios-plugins 1.4.2) 1.12  An entry marked "ignore" will cause that sensor to be skipped.
 The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute  Generally used with state checking of all sensors to ignore sensors you
 copies of the plugins under the terms of the GNU General Public License.  don't care about or that report incorrectly.
 For more information about these matters, see the file named COPYING.  
   If you are using --ignore-status, you can still check the status of
   individual sensors with a status entry.
   
   check_hw_sensors v1.26
   Copyright (c) 2009 Andrew Fresh <andrew@afresh1.com>
   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.
   
   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.8

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>