From 48300110fdc2e8bfa889109a7c825fa4c7a423ac Mon Sep 17 00:00:00 2001 From: Sven Velt Date: Mon, 25 Jul 2011 17:59:25 +0200 Subject: [PATCH] sensors: Bump timeout to 15 minutes Signed-off-by: Sven Velt --- check_sensors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_sensors.py b/check_sensors.py index 8475bc0..d71d78e 100755 --- a/check_sensors.py +++ b/check_sensors.py @@ -47,7 +47,7 @@ except ImportError: plugin = MonitoringPlugin(pluginname='check_sensors', tagforstatusline='Sensors', description='Check environment sensors', version='0.2') plugin.add_cmdlineoption('-s', '', 'sensorid', '(comma separated list of) sensor id(s), no spaces', default=None) -plugin.add_cmdlineoption('-m', '', 'maxage', 'maximum age of data files (default: 600 seconds/10 minutes)', type="int", default=600) +plugin.add_cmdlineoption('-m', '', 'maxage', 'maximum age of data files (default: 900 seconds/15 minutes)', type="int", default=900) plugin.add_cmdlineoption('-p', '', 'path', 'path to data files', default='/tmp') plugin.add_cmdlineoption('-b', '', 'basefilename', 'base of sensor file name', default='sensor_') plugin.add_cmdlineoption('-w', '', 'tempwarn', 'warning thresold for temperature sensors', default=None)