Refactored snapin server_time to new snapin API
[check_mk.git] / checks / perle_modules_mgt
blobcf5fb03810c277b3236781876eb253f618f77f12
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2016 mk@mathias-kettner.de |
11 # +------------------------------------------------------------------+
13 # This file is part of Check_MK.
14 # The official homepage is at http://mathias-kettner.de/check_mk.
16 # check_mk is free software; you can redistribute it and/or modify it
17 # under the terms of the GNU General Public License as published by
18 # the Free Software Foundation in version 2. check_mk is distributed
19 # in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
20 # out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
21 # PARTICULAR PURPOSE. See the GNU General Public License for more de-
22 # tails. You should have received a copy of the GNU General Public
23 # License along with GNU Make; see the file COPYING. If not, write
24 # to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
25 # Boston, MA 02110-1301 USA.
28 # .1.3.6.1.4.1.1966.21.1.1.1.1.4.5.1.1.2.1.1 1 --> PERLE-MCR-MGT-MIB::mcrMgtSlotIndex.1.1
29 # .1.3.6.1.4.1.1966.21.1.1.1.1.4.5.1.1.3.1.1 MCR-MGT --> PERLE-MCR-MGT-MIB::mcrMgtModelName.1.1
30 # .1.3.6.1.4.1.1966.21.1.1.1.1.4.5.3.1.4.1.1 0 --> PERLE-MCR-MGT-MIB::mcrMgtLedALM.1.1
33 def inventory_perle_modules_mgt(info):
34 return [ (index, None)
35 for index, _name, _descr, _alarm_led, _status in info ]
38 def check_perle_modules_mgt(item, _no_params, info):
39 mappings = { "alarm_led" : { "0" : (0, "no alarms"),
40 "1" : (2, "alarms present"), },
41 "power_led" : { "0" : (2, "off"),
42 "1" : (0, "on"), }, }
44 for index, _name, _descr, power_led, alarm_led in info:
45 if item == index:
46 for title, value, key in [ ("Alarm LED", alarm_led, "alarm_led"),
47 ("Power LED", power_led, "power_led") ]:
48 state, state_readable = mappings[key][value]
49 yield state, "%s: %s" % (title, state_readable)
52 check_info['perle_modules_mgt'] = {
53 'inventory_function' : inventory_perle_modules_mgt,
54 'check_function' : check_perle_modules_mgt,
55 'service_description' : 'Chassis slot %s MGT',
56 # If you change snmp info please adapt the related inventory plugin
57 'snmp_info' : ('.1.3.6.1.4.1.1966.21.1.1.1.1.4.5', [
58 "1.1.2", # PERLE-MCR-MGT-MIB::mcrMgtSlotIndex
59 "1.1.3", # PERLE-MCR-MGT-MIB::mcrMgtModelName.
60 "1.1.4", # PERLE-MCR-MGT-MIB::mcrMgtModelDesc
61 "3.1.3", # PERLE-MCR-MGT-MIB::mcrMgtLedPWR
62 "3.1.4", # PERLE-MCR-MGT-MIB::mcrMgtLedALM
63 ]),
64 'snmp_scan_function' : perle_scan_function,
65 'includes' : [ 'perle.include' ],