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

Annotation of nagios/check_hw_sensors/README, Revision 1.1

1.1     ! andrew      1: check_hw_sensors plugin for Nagios monitors sysctl hw.sensors on OpenBSD
        !             2:     check_hw_sensors (-f [<FILENAME>]|(-s <hw.sensors id> -w limit -c limit))
        !             3:
        !             4: Usage:
        !             5:     -f, --filename=FILE
        !             6:         FILE to load checks from (defaults to /etc/sensorsd.conf)
        !             7:     -s, --sensor=ID
        !             8:         ID of a single sensor.  "-s 0" means hw.sensors.0.
        !             9:     -w, --warning=RANGE or single ENTRY
        !            10:         Exit with WARNING status if outside of RANGE or if != ENTRY
        !            11:     -c, --critical=INTEGER
        !            12:         Exit with CRITICAL status if outside of RANGE or if != ENTRY
        !            13:
        !            14:     -h (--help)       usage help
        !            15:
        !            16: FILE is in the same format as sensorsd.conf(5).  These additional
        !            17: entries in the file are ignored by sensorsd(8).
        !            18:
        !            19: check_hw_sensors understands the following entries:
        !            20:
        !            21:     low, high, crit, warn, crit.low, crit.high, warn.low, warn.high
        !            22:
        !            23: An ENTRY depends on the type.  The descriptions in sensorsd.conf(5)
        !            24: can be used when appropriate, or you can use the following:
        !            25:
        !            26:     volts_dc, fanrpm or raw - Anything that includes digits.
        !            27:     Both the value of the check and the value of the sensor
        !            28:     response that are not either a digit or period are stripped
        !            29:     and then the two resultant values are compared.
        !            30:
        !            31:     temp - Can be as above, but if the entry has an F in it,
        !            32:     it compares farenheit, otherwise it uses celcius.
        !            33:
        !            34:     indicator or drive - does a case sensitive match of each
        !            35:     entry in the comma separated list and if it does not match
        !            36:     any of the entries, it matches the status.
        !            37:
        !            38: The entries 'crit' or 'warn' (or the -c or -w on the command line)
        !            39: may be a RANGE or a comma separated list of acceptable values.
        !            40: The comma separated list of values contains a list of things that
        !            41: will NOT cause the status.  This is possibly counterintuitive, but
        !            42: you are more likely to know good values than bad values.
        !            43:
        !            44: A RANGE is a low ENTRY and a high ENTRY separated by a colon (:).
        !            45: It can also be low: or :high with the other side left blank to only
        !            46: make the single check..
        !            47:
        !            48: check_hw_sensors (nagios-plugins 1.4.2) 1.12
        !            49: The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute
        !            50: copies of the plugins under the terms of the GNU General Public License.
        !            51: For more information about these matters, see the file named COPYING.

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