mirror of
https://github.com/alexreinert/homematic_check_mk.git
synced 2023-10-10 11:37:02 +00:00
Initial commit
This commit is contained in:
167
check/checks/homematic
Normal file
167
check/checks/homematic
Normal file
@@ -0,0 +1,167 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
def parse_homematic(info):
|
||||
result = { }
|
||||
for line in info:
|
||||
key = line[0]
|
||||
device = result.get(key)
|
||||
if key == 'SVC_MSG':
|
||||
if device is None:
|
||||
device = []
|
||||
result[key] = device
|
||||
device.append(line[1:])
|
||||
else:
|
||||
if device is None:
|
||||
device = { }
|
||||
result[key] = device
|
||||
device[line[1]] = line[2:]
|
||||
return result
|
||||
|
||||
def inventory_homematic(parsed):
|
||||
yield 'Low Battery devices', None
|
||||
yield 'Unreachable devices', None
|
||||
yield 'Service Messages', None
|
||||
|
||||
def check_homematic(item, params, parsed):
|
||||
messages = parsed.get('SVC_MSG', None);
|
||||
|
||||
state = 0
|
||||
devices = []
|
||||
|
||||
if messages is not None:
|
||||
for msg in messages:
|
||||
if item == 'Low Battery devices':
|
||||
if msg[1] == 'LOWBAT':
|
||||
state = 2
|
||||
devices.append(msg[0])
|
||||
elif item == 'Unreachable devices':
|
||||
if msg[1] == 'UNREACH':
|
||||
state = 2
|
||||
devices.append(msg[0])
|
||||
elif msg[1] == 'STICKY_UNREACH':
|
||||
state = max(state, 1)
|
||||
devices.append(msg[0])
|
||||
elif item == 'Service Messages':
|
||||
if msg[1] not in [ 'LOWBAT', 'UNREACH', 'STICKY_UNREACH' ]:
|
||||
if msg[1] in [ 'CONFIG_PENDING', 'DEVICE_IN_BOOTLOADER', 'UPDATE_PENDING', 'USBH_POWERFAIL' ]:
|
||||
state = max(state, 1)
|
||||
else:
|
||||
state = 2
|
||||
devices.append(msg[0] + ':' + msg[1])
|
||||
|
||||
if state == 0:
|
||||
return 0, 'No issues reported'
|
||||
|
||||
return state, ', '.join(devices)
|
||||
|
||||
check_info['homematic'] = {
|
||||
'check_function': check_homematic,
|
||||
'inventory_function': inventory_homematic,
|
||||
'parse_function': parse_homematic,
|
||||
'service_description': "Homematic %s",
|
||||
}
|
||||
|
||||
def inventory_homematic_humidity(parsed):
|
||||
for line in parsed:
|
||||
data = parsed[line]
|
||||
if isinstance(data, dict):
|
||||
temperature = data.get('TEMPERATURE', data.get('ACTUAL_TEMPERATURE', None))
|
||||
humidity = data.get('HUMIDITY', None)
|
||||
|
||||
if temperature is not None and humidity is not None:
|
||||
yield line, { }
|
||||
|
||||
# data = parsed[line]
|
||||
# if isinstance(data, dict) and data.get('HSSTYPE', 'UNKNOWN') in [ [u'HM-WDS10-TH-O'], [u'HM-WDS20-TH-O'], [u'HM-WDS40-TH-I'], [u'HM-CC-TC'], [u'HM-WDS100-C6-O-2'], [u'HM-WDS100-C6-O'], [u'HM-TC-IT-WM-W-EU'], [u'HM-WDS40-TH-I-2'], [u'HM-WDC7000'], [u'HMIP-WTH'], [u'HmIP-WTH-2'], [u'HmIP-STH'], [u'HmIP-STHD'], [u'HmIP-BWTH'], [u'HmIP-BWTH24'] ]:
|
||||
# yield line, { }
|
||||
|
||||
def check_homematic_humidity(item, params, parsed):
|
||||
for line in parsed:
|
||||
if line == item:
|
||||
data = parsed[line]
|
||||
temperature = data.get('TEMPERATURE', data.get('ACTUAL_TEMPERATURE', None))
|
||||
humidity = data.get('HUMIDITY', None)
|
||||
|
||||
if humidity is None or temperature is None:
|
||||
return 3, 'Humidity or temperature are not available'
|
||||
|
||||
temperature = float(temperature[0])
|
||||
humidity = float(humidity[0])
|
||||
|
||||
if humidity <= params['critical'][0] or humidity >= params['critical'][1]:
|
||||
state = 2
|
||||
elif humidity <= params['warning'][0] or humidity >= params['warning'][1]:
|
||||
state = 1
|
||||
else:
|
||||
state = 0
|
||||
|
||||
message = "Temperature: %f, Humidity: %f" % (temperature, humidity)
|
||||
perfdata = [
|
||||
('temperature', temperature),
|
||||
('humidity', humidity),
|
||||
]
|
||||
|
||||
return state, message, perfdata
|
||||
|
||||
factory_settings['homematic_humidity_default_levels'] = {
|
||||
'warning' : (40, 60),
|
||||
'critical': (35, 65),
|
||||
}
|
||||
|
||||
homematic_humidity_default_levels = { }
|
||||
|
||||
check_info['homematic.humidity'] = {
|
||||
'check_function': check_homematic_humidity,
|
||||
'inventory_function': inventory_homematic_humidity,
|
||||
'service_description': "Humidity %s",
|
||||
'group': 'homematic_humidity',
|
||||
'default_levels_variable': 'homematic_humidity_default_levels',
|
||||
'has_perfdata': True,
|
||||
}
|
||||
|
||||
def inventory_homematic_dutycycle(parsed):
|
||||
for line in parsed:
|
||||
data = parsed[line]
|
||||
if isinstance(data, dict) and data.get('DUTY_CYCLE', None) is not None:
|
||||
yield line, { }
|
||||
|
||||
def check_homematic_dutycycle(item, params, parsed):
|
||||
for line in parsed:
|
||||
if line == item:
|
||||
data = parsed[line]
|
||||
dutycycle = data.get('DUTY_CYCLE', None)
|
||||
|
||||
if dutycycle is None :
|
||||
return 3, 'Duty cycle is not available'
|
||||
|
||||
dutycycle = float(dutycycle[0])
|
||||
if dutycycle >= params['critical']:
|
||||
state = 2
|
||||
elif dutycycle >= params['warning']:
|
||||
state = 1
|
||||
else:
|
||||
state = 0
|
||||
|
||||
message = "Duty cycle: %f" % (dutycycle)
|
||||
perfdata = [
|
||||
('dutycycle', dutycycle, params['warning'], params['critical'], 0, 100),
|
||||
]
|
||||
|
||||
return state, message, perfdata
|
||||
|
||||
factory_settings['homematic_dutycycle_default_levels'] = {
|
||||
'warning' : 50,
|
||||
'critical': 70,
|
||||
}
|
||||
|
||||
homematic_dutycycle_default_levels = { }
|
||||
|
||||
check_info['homematic.dutycycle'] = {
|
||||
'check_function': check_homematic_dutycycle,
|
||||
'inventory_function': inventory_homematic_dutycycle,
|
||||
'service_description': "Duty cycle %s",
|
||||
'group': 'homematic_dutycycle',
|
||||
'default_levels_variable': 'homematic_dutycycle_default_levels',
|
||||
'has_perfdata': True,
|
||||
}
|
||||
|
20
check/homematic
Normal file
20
check/homematic
Normal file
@@ -0,0 +1,20 @@
|
||||
{'author': 'Alexander Reinert <alex@areinert.de>',
|
||||
'description': 'Homematic device checks to use with the CCU check_mk_agent addon',
|
||||
'download_url': 'https://github.com/alexreinert/homematic_check_mk',
|
||||
'files': {'agents': [],
|
||||
'bin': [],
|
||||
'checkman': [],
|
||||
'checks': ['homematic'],
|
||||
'doc': [],
|
||||
'inventory': [],
|
||||
'lib': [],
|
||||
'mibs': [],
|
||||
'notifications': [],
|
||||
'pnp-templates': [],
|
||||
'web': ['plugins/perfometer/homematic.py',
|
||||
'plugins/wato/homematic.py']},
|
||||
'name': 'homematic',
|
||||
'title': 'Homematic',
|
||||
'version': '1.0',
|
||||
'version.min_required': '1.2.8',
|
||||
'version.packaged': '1.4.0p5'}
|
9
check/web/plugins/perfometer/homematic.py
Normal file
9
check/web/plugins/perfometer/homematic.py
Normal file
@@ -0,0 +1,9 @@
|
||||
def perfometer_check_mk_homematic_dutycycle(row, check_command, perf_data):
|
||||
dutycycle = float(perf_data[0][1])
|
||||
state = row["service_state"]
|
||||
color = { 0: "#39f", 1: "#ff2", 2: "#f22", 3: "#fa2" }[state]
|
||||
|
||||
return "%.0f%%" % dutycycle, perfometer_linear(dutycycle, color)
|
||||
|
||||
perfometers["check_mk-homematic.dutycycle"] = perfometer_check_mk_homematic_dutycycle
|
||||
|
59
check/web/plugins/wato/homematic.py
Normal file
59
check/web/plugins/wato/homematic.py
Normal file
@@ -0,0 +1,59 @@
|
||||
checkgroups = []
|
||||
subgroup_os = _("Temperature, Humidity, Electrical Parameters, etc.")
|
||||
|
||||
register_check_parameters(
|
||||
subgroup_os,
|
||||
"homematic_humidity",
|
||||
_("Homematic Humidity"),
|
||||
Dictionary(
|
||||
title = _("Parameters for the Homematic Humidity check"),
|
||||
help = _(""),
|
||||
elements = [
|
||||
( "warning",
|
||||
Tuple(
|
||||
title = _("Warning level of humidity"),
|
||||
elements = [
|
||||
Integer(title = _("Lower than"), default_value = 40),
|
||||
Integer(title = _("Higher than"), default_value = 60),
|
||||
],
|
||||
),
|
||||
),
|
||||
( "critical",
|
||||
Tuple(
|
||||
title = _("Critical level of humidity"),
|
||||
elements = [
|
||||
Integer(title = _("Lower than"), default_value = 30),
|
||||
Integer(title = _("Higher than"), default_value = 70),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
TextAscii(
|
||||
title = _("Name of the device"),
|
||||
),
|
||||
match_type = "dict",
|
||||
)
|
||||
|
||||
register_check_parameters(
|
||||
subgroup_os,
|
||||
"homematic_dutycycle",
|
||||
_("Homematic Duty cycle"),
|
||||
Dictionary(
|
||||
title = _("Parameters for the Homematic Duty cycle check"),
|
||||
help = _(""),
|
||||
elements = [
|
||||
( "warning",
|
||||
Integer(title = _("Warning level of duty cycle"), default_value = 50)
|
||||
),
|
||||
( "critical",
|
||||
Integer(title = _("Critical level of duty cycle"), default_value = 70)
|
||||
),
|
||||
],
|
||||
),
|
||||
TextAscii(
|
||||
title = _("Name of the device"),
|
||||
),
|
||||
match_type = "dict",
|
||||
)
|
||||
|
Reference in New Issue
Block a user