Blame view

plugins/check_temperature 15.1 KB
Frederik Lindenaar authored
1
2
3
4
#! /usr/bin/env python
#
# check_temperature - Nagios temperature check for DS18B20 sensor on RaspberryPi
#
Frederik Lindenaar authored
5
# Version 1.2, latest version, documentation and bugtracker available at:
Frederik Lindenaar authored
6
7
#              https://gitlab.lindenaar.net/scripts/nagios-plugins
#
Frederik Lindenaar authored
8
# Copyright (c) 2017 - 2019 Frederik Lindenaar
Frederik Lindenaar authored
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# This script is free software: you can redistribute and/or modify it under the
# terms of version 3 of the GNU General Public License as published by the Free
# Software Foundation, or (at your option) any later version of the license.
#
# This script is distributed in the hope that it will be useful but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program.  If not, visit <http://www.gnu.org/licenses/> to download it.

from sys import exit
from os.path import basename, splitext
from glob import glob
from time import time, sleep
from argparse import ArgumentParser as StandardArgumentParser, FileType, \
              _StoreAction as StoreAction, _StoreConstAction as StoreConstAction
import logging

# Constants (no need to change but allows for easy customization)
Frederik Lindenaar authored
30
VERSION="1.2"
Frederik Lindenaar authored
31
32
PROG_NAME=splitext(basename(__file__))[0]
PROG_VERSION=PROG_NAME + ' ' + VERSION
Frederik Lindenaar authored
33
34
35
36
37
38
39

CPU_SENSOR_DEV = '/sys/class/thermal/thermal_zone0/temp'
I2C_MCP9808_CONFIG_ADDR=0x1
I2C_MCP9808_CONFIG = [ 0x00, 0x00 ]  # continuous conversion (power-up default)
I2C_MCP9808_PRECISION_ADDR=0x08
I2C_MCP9808_PRECISION=3	             # 0=0.5, 1=0.25, 2=0.125, 3=0.0625 degr. C
I2C_MCP9808_TEMP_ADDR=0x05
Frederik Lindenaar authored
40
41
42
43
W1_SENSOR_DEV_DIR =  '/sys/bus/w1/devices/'
W1_SENSOR_DEV_PREFIX = '28-'
W1_SENSOR_DEV_SUFFIX = '/w1_slave'
W1_SENSOR_READ_RETRIES=10
Frederik Lindenaar authored
44
W1_SENSOR_SCALE=1000
Frederik Lindenaar authored
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89

LOG_FORMAT='%(levelname)s - %(message)s'
LOG_FORMAT_FILE='%(asctime)s - ' + LOG_FORMAT
LOGGING_NONE=logging.CRITICAL + 10
NAGIOS_OK = ( 'OK', 0)
NAGIOS_WARN = ( 'WARNING', 1)
NAGIOS_CRITICAL = ( 'CRITICAL', 2 )
NAGIOS_UNKNOWN = ( 'UNKNOWN', 3 )

# Setup logging
logging.basicConfig(format=LOG_FORMAT)
logging.addLevelName(LOGGING_NONE, 'NONE')
logger = logging.getLogger(PROG_NAME)
logger.setLevel(logging.CRITICAL)

################[ wrapper to stop ArgumentParser from exiting ]################
# based on http://stackoverflow.com/questions/14728376/i-want-python-argparse-to-throw-an-exception-rather-than-usage/14728477#14728477
# the only way to do this is overriding the error method and throw and Exception
class ArgumentParserError(Exception): pass

class ArgumentParser(StandardArgumentParser):
    """ArgumentParser not exiting with non-Nagios format message upon errors"""
    def error(self, message):
        raise ArgumentParserError(message)

##################[ Action to immediately set the log level ]##################
class SetLogLevel(StoreConstAction):
    """ArgumentParser action to set log level to provided const value"""
    def __call__(self, parser, namespace, values, option_string=None):
        logging.getLogger(PROG_NAME).setLevel(self.const)

####################[ Action to immediately log to a file ]####################
class SetLogFile(StoreAction):
    """ArgumentParser action to log to file (sets up FileHandler accordingly)"""
    def __call__(self, parser, namespace, values, option_string=None):
        super(SetLogFile, self).__call__(parser,namespace,values,option_string)
        formatter = logging.Formatter(LOG_FORMAT_FILE)
        handler = logging.FileHandler(values)
        handler.setFormatter(formatter)
        logger = logging.getLogger(PROG_NAME)
        logger.propagate = False
        logger.addHandler(handler)

###############################################################################
Frederik Lindenaar authored
90
def convert_celcius(temp_read, scale = 1):
Frederik Lindenaar authored
91
    """Converts raw temperature sensore value to degrees Celcius"""
Frederik Lindenaar authored
92
    return float(temp_read) / float(scale)
Frederik Lindenaar authored
93
94
95
CONVERT_CELCIUS = ( convert_celcius, 'C', 'Celcius' )
Frederik Lindenaar authored
96
def convert_farenheit(temp_read, scale = 1):
Frederik Lindenaar authored
97
    """Converts raw temperature sensore value to degrees Farenheit"""
Frederik Lindenaar authored
98
    return float(temp_read * 9) / float(5 * scale) + 32.0
Frederik Lindenaar authored
99
100
101
102
103
104
105
106
CONVERT_FARENHEIT = ( convert_farenheit, 'F', 'Farenheit' )


def isempty(string):
    """Checks whether string 'str' provided is unset or empty"""
    return string is None or len(string) == 0
Frederik Lindenaar authored
107
108
109
110
111
def hex_int(string):
    """Use int()'s auto-detection to parse 10-base and 16-base (0x..) numbers"""
    return int(string, 0);
Frederik Lindenaar authored
112
113
114
115
116
def read_rpi_cpu_temp(args):
    """Reads CPU temperature and converts it to desired unit, returns temperature"""
    with open(args.file, 'r') as f:
        lines = f.readlines()
        logger.debug('Temperature sensor data read from %s: %s', f.name, lines)
Frederik Lindenaar authored
117
Frederik Lindenaar authored
118
119
120
121
122
    temp_read = int(lines[0])
    temp = args.converter[0](temp_read)
    logger.debug('Temperature sensor value %d is %.2f%s', temp_read,
    temp, args.converter[1])
    return temp, 1
Frederik Lindenaar authored
123
124
Frederik Lindenaar authored
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
def read_i2c_mcp9808_temp(args):
    """Returns temperature from I2C MCP9808 sensor in desired unit"""

    try:
        import smbus
    except ImportError:
        try:
            import smbus2 as smbus
        except ImportError:
            logger.critical("Unable to import either smbus or smbus2 library");
            raise ImportError("missing I2C library, please install python-smbus or smbus2");

    try:
        bus = smbus.SMBus(args.i2cbus) # Get I2C bus
    except OSError as e:
        logger.critical(e)
        raise IOError("Invalid I2C bus: %d" % args.i2cbus)

    try:
        bus.write_i2c_block_data(args.address, I2C_MCP9808_CONFIG_ADDR,
                                               I2C_MCP9808_CONFIG)
        bus.write_byte_data(args.address, I2C_MCP9808_PRECISION_ADDR,
                                          I2C_MCP9808_PRECISION)
        sleep(0.5)

        # Read temperature (0x05), 2 bytes (MSB, LSB)
        data = bus.read_i2c_block_data(args.address, I2C_MCP9808_TEMP_ADDR, 2)
        logger.debug('Temperature sensor data from MCP9808 %#02x: 0x%02x%02x',
                     args.address, data[0], data[1])

        # Convert the data to 13-bits
        temp_read = ((data[0] & 0x1F) * 256) + data[1]
        if temp_read > 4095 :
            temp_read -= 8192

        temp = args.converter[0](temp_read, 16)
        logger.debug('Temperature sensor value %d is %.2f%s',
                     temp_read, temp, args.converter[1])
        return temp, 1
    except IOError as e:
        logger.critical(e)
        raise IOError("Error while communicating with I2C device %#02x" %
                      args.address)
Frederik Lindenaar authored
170
171
def get_w1_sensor_device_filename(args, dev_dir=W1_SENSOR_DEV_DIR,
                            prefix=W1_SENSOR_DEV_PREFIX, suffix=W1_SENSOR_DEV_SUFFIX):
Frederik Lindenaar authored
172
173
174
175
176
177
178
179
180
181
182
183
184
    """Auto-determine sensor datafile name (unless args.file is set)"""
    if isempty(args.file):
        search_pat = dev_dir + ('/' if dev_dir[-1]!='/' else '')
        search_pat+= prefix + '*' if isempty(args.serial) else '*' + args.serial
        logger.debug('looking for sensors with search pattern %s', search_pat)

        device_folders = glob(search_pat)
        if len(device_folders) == 1:
            filename = device_folders[0] + suffix
        else:
            if len(device_folders) == 0:
                errmsg = 'no supported temperature sensors in %s' % dev_dir
            else:
Frederik Lindenaar authored
185
186
                serials = [ basename(x)[len(prefix):] if x.find(prefix)>=0
                                else basename(x) for x in device_folders ]
Frederik Lindenaar authored
187
188
189
190
191
192
193
194
195
196
                errmsg = 'found multiple temperature sensors (%s), please '\
                         'specify which one to use' % ', '.join(serials)
            logger.critical(errmsg)
            raise ValueError(errmsg)
    else:
        filename = args.file
    logger.debug('using temperature sensor at %s', filename)
    return filename
Frederik Lindenaar authored
197
198
def read_w1_ds18b20_temp(args):
    """Returns temperature from 1-wire ds18b20 sensor in desired unit"""
Frederik Lindenaar authored
199
200
201
202
203
204
205
    device_file = get_w1_sensor_device_filename(args)
    lines=[ '' ]
    tries = 0
    while tries <= args.retries and lines[0].strip()[-3:] != 'YES':
        if tries > 0:
            logger.warn('Temperature sensor data not stable, reading once more')
            sleep(0.2)
Frederik Lindenaar authored
206
        tries += 1
Frederik Lindenaar authored
207
208
209
        with open(device_file, 'r') as f:
            lines = f.readlines()
            logger.debug('Temperature sensor data read from %s: %s', f.name, lines)
Frederik Lindenaar authored
210
211
212
213
214
215
216
217
218

    if lines[0].strip()[-3:] != 'YES':
        errmsg = 'no stable temperature sensor data after %d tries' % tries
    else:
        equals_pos = lines[1].find('t=')
        if equals_pos == -1:
            errmsg = 'temperature sensor data format is not supported'
        else:
            temp_read = int(lines[1][equals_pos+2:])
Frederik Lindenaar authored
219
            temp = args.converter[0](temp_read, W1_SENSOR_SCALE)
Frederik Lindenaar authored
220
            logger.debug('Temperature sensor value %d is %.2f%s', temp_read,
Frederik Lindenaar authored
221
                         temp, args.converter[1])
Frederik Lindenaar authored
222
223
224
225
226
227
            return temp, tries

    logger.critical(errmsg)
    raise ValueError(errmsg)
Frederik Lindenaar authored
228
229
230
231
232
def parse_args():
    """Parse command line and get parameters from environment, if present"""

    # Setup argument parser, the workhorse gluing it all together
    parser = ArgumentParser(
Frederik Lindenaar authored
233
        description='Nagios check plugin for temperature sensors on RaspberryPi'
Frederik Lindenaar authored
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
    )
    parser.add_argument('-V', '--version',action="version",version=PROG_VERSION)

    pgroup = parser.add_mutually_exclusive_group(required=False)
    pgroup.add_argument('-C', '--celcius',  action='store_const',
                        dest='converter',   const=CONVERT_CELCIUS,
                        help='measure, critical and warn values in Celcius '
                             '(default)',   default=CONVERT_CELCIUS)
    pgroup.add_argument('-F', '--farenheit',action='store_const',
                        dest='converter',   const=CONVERT_FARENHEIT,
                        help='measure, critical and warn values in Farenheit')

    parser.add_argument('-w', '--warn',     type=float,
                        help='temperature for warning status')
    parser.add_argument('-c','--critical',  type=float,
                        help='temperature for critical status')

    pgroup = parser.add_mutually_exclusive_group(required=False)
    pgroup.add_argument('-q', '--quiet',    default=logging.CRITICAL,
                        action=SetLogLevel, const=LOGGING_NONE,
                        help='quiet (no output, only exit with exit code)')
    pgroup.add_argument('-v', '--verbose',  help='more verbose output',
                        action=SetLogLevel, const=logging.INFO)
    pgroup.add_argument('-d', '--debug',    help='debug output (more verbose)',
                        action=SetLogLevel, const=logging.DEBUG)

    parser.add_argument('-l', '--logfile',  action=SetLogFile,
                        help='send logging output to logfile')

    subparser = parser.add_subparsers(title='Supported temperature sensors')

    cpuparser = ArgumentParser(add_help=False)
    cpuparser.add_argument('-f', '--file', default=CPU_SENSOR_DEV,
                           help='input file (or device) to obtain data from'
                                ' (defaults to %s)' % CPU_SENSOR_DEV)
    cmdparser = subparser.add_parser('rpi_cpu', parents=[cpuparser],
                                    help='read built-in Raspberry Pi CPU temperature')
    cmdparser.set_defaults(func=read_rpi_cpu_temp, cmdparser=cmdparser, retries=0)
Frederik Lindenaar authored
273
274
275
276
277
278
279
280
281
282
    i2cparser = ArgumentParser(add_help=False)
    i2cparser.add_argument('-a', '--address', type=hex_int,
                           help='I2C Address of sensor, use 0x.. for hex (*)')
    i2cparser.add_argument('-b', '--i2cbus', default=1, type=int,
                           help='I2C Bus to use (defaults to 1)')
    cmdparser = subparser.add_parser('i2c_mcp9808', parents=[i2cparser],
             help='read I2C connected MCP9808 sensor',
             epilog='(*) default I2C address for an MCP9808 is 0x18')
    cmdparser.set_defaults(func=read_i2c_mcp9808_temp, cmdparser=cmdparser, retries=0, address=0x18)
Frederik Lindenaar authored
283
284
285
286
287
288
289
290
291
292
    w1parser = ArgumentParser(add_help=False)
    pgroup = w1parser.add_mutually_exclusive_group(required=False)
    pgroup.add_argument('-s', '--serial',
                        help='(unique part of) temperature sensor serial (*)')
    pgroup.add_argument('-f', '--file',
                        help='input file (or device) to obtain data from (*)')
    w1parser.add_argument('-r', '--retries', type=int,default=W1_SENSOR_READ_RETRIES,
                        help='number of times to retry reading sensor data when'
                             ' unstable (defaults to %d)' % W1_SENSOR_READ_RETRIES)
    cmdparser = subparser.add_parser('w1_ds18b20', parents=[w1parser],
Frederik Lindenaar authored
293
294
295
296
297
298
                                    help='read 1-wire connected DS18b20 sensor',
        epilog='(*) by default the script will look for the first device that '
               'matches %s* in %s, if multiple entries are found -s or -f must '
               'be used to specify which sensor to read.' %
               (W1_SENSOR_DEV_PREFIX, W1_SENSOR_DEV_DIR))
    cmdparser.set_defaults(func=read_w1_ds18b20_temp,   cmdparser=cmdparser)
Frederik Lindenaar authored
299
300
301
302
303
304
305
306

    # parse arguments and post-process command line options
    args = parser.parse_args()

    # if we got here all seems OK
    return args
Frederik Lindenaar authored
307
308
309
310
def nagios_exit(status, message, data=None):
    """exit 'nagios-style', print status and message followed by perf. data"""
    if logger.isEnabledFor(logging.CRITICAL):
        if data is not None and len(data) > 0:
Frederik Lindenaar authored
311
312
313
            perfdata = ' | ' + ' '.join([ "'%s'=%s" % (k,
                ';'.join(['' if x is None else str(x) for x in v])
                        if isinstance(v,list) else v) for k,v in data ])
Frederik Lindenaar authored
314
        else:
Frederik Lindenaar authored
315
316
            perfdata = ''
        print 'Temperature %s: %s%s' % (status[0], message, perfdata)
Frederik Lindenaar authored
317
318
319
320
321
322
323
324
325
326
327
328
329
330
    exit(status[1])


if __name__ == '__main__':
    try:
        args = parse_args()
    except ArgumentParserError as e:
        nagios_exit(NAGIOS_UNKNOWN,'error with setup: ' + e.message)
    except (KeyboardInterrupt, EOFError) as e:
        print
        nagios_exit(NAGIOS_UNKNOWN,'initialization aborted')

    try:
        starttime = time()
Frederik Lindenaar authored
331
        temperature, tries = args.func(args)
Frederik Lindenaar authored
332
333
334
335
336
        endtime = time()

    except (KeyboardInterrupt) as e:
        nagios_exit(NAGIOS_UNKNOWN,'temperature sensor read aborted by user')
Frederik Lindenaar authored
337
    except (IOError, ValueError, ImportError) as e:
Frederik Lindenaar authored
338
339
340
341
342
343
        nagios_exit(NAGIOS_UNKNOWN,'temperature sensor read failed: %s' % e)

    elapse = endtime-starttime
    logger.info('Got temperature reading of %.2f degrees %s in %fs',
                temperature, args.converter[2], elapse)
Frederik Lindenaar authored
344
345
    unit = args.converter[1]
    message = 'current temperature is %.2f%s' % (temperature, unit)
Frederik Lindenaar authored
346
347
    if args.critical is not None and temperature > args.critical:
        nagiosresult = NAGIOS_CRITICAL
Frederik Lindenaar authored
348
        message+= ' and exceeds critical threshold %.2f%s' %(args.critical,unit)
Frederik Lindenaar authored
349
350
    elif args.warn is not None and temperature > args.warn:
        nagiosresult = NAGIOS_WARN
Frederik Lindenaar authored
351
        message+= ' and exceeds warning threshold %.2f%s' % (args.warn,unit)
Frederik Lindenaar authored
352
353
354
    else:
        nagiosresult = NAGIOS_OK
Frederik Lindenaar authored
355
356
357
358
359
360
    nagios_exit(nagiosresult, message, [
          ('temperature', [ '%f%s' % (temperature, unit),
                            args.warn, args.critical, None, None]),
          ('retries', [ tries-1, None, args.retries, 0, None ]),
          ('checktime', [ '%fs' % elapse, None, None, 0, None])
    ])
Frederik Lindenaar authored
361