Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / raritan_px_outlets
blob916a4cbaed4196013a12b7605b5be237cacf6b5c
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2015 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.
27 # .1.3.6.1.4.1.13742.4.1.2.2.1.1.1 1 --> PDU-MIB::outletIndex.1
28 # .1.3.6.1.4.1.13742.4.1.2.2.1.1.3 3 --> PDU-MIB::outletIndex.3
29 # .1.3.6.1.4.1.13742.4.1.2.2.1.1.4 4 --> PDU-MIB::outletIndex.4
30 # .1.3.6.1.4.1.13742.4.1.2.2.1.2.1 Outlet 1 --> PDU-MIB::outletLabel.1
31 # .1.3.6.1.4.1.13742.4.1.2.2.1.2.3 Outlet 3 --> PDU-MIB::outletLabel.3
32 # .1.3.6.1.4.1.13742.4.1.2.2.1.2.4 Outlet 4 --> PDU-MIB::outletLabel.4
33 # .1.3.6.1.4.1.13742.4.1.2.2.1.3.1 1 --> PDU-MIB::outletOperationalState.1
34 # .1.3.6.1.4.1.13742.4.1.2.2.1.3.3 1 --> PDU-MIB::outletOperationalState.3
35 # .1.3.6.1.4.1.13742.4.1.2.2.1.3.4 0 --> PDU-MIB::outletOperationalState.4
36 # .1.3.6.1.4.1.13742.4.1.2.2.1.4.1 0 --> PDU-MIB::outletCurrent.1
37 # .1.3.6.1.4.1.13742.4.1.2.2.1.4.3 6854 --> PDU-MIB::outletCurrent.3
38 # .1.3.6.1.4.1.13742.4.1.2.2.1.4.4 0 --> PDU-MIB::outletCurrent.4
39 # .1.3.6.1.4.1.13742.4.1.2.2.1.6.1 222000 --> PDU-MIB::outletVoltage.1
40 # .1.3.6.1.4.1.13742.4.1.2.2.1.6.3 222000 --> PDU-MIB::outletVoltage.3
41 # .1.3.6.1.4.1.13742.4.1.2.2.1.6.4 222000 --> PDU-MIB::outletVoltage.4
42 # .1.3.6.1.4.1.13742.4.1.2.2.1.7.1 0 --> PDU-MIB::outletActivePower.1
43 # .1.3.6.1.4.1.13742.4.1.2.2.1.7.3 1475 --> PDU-MIB::outletActivePower.3
44 # .1.3.6.1.4.1.13742.4.1.2.2.1.7.4 0 --> PDU-MIB::outletActivePower.4
45 # .1.3.6.1.4.1.13742.4.1.2.2.1.8.1 0 --> PDU-MIB::outletApparentPower.1
46 # .1.3.6.1.4.1.13742.4.1.2.2.1.8.3 1542 --> PDU-MIB::outletApparentPower.3
47 # .1.3.6.1.4.1.13742.4.1.2.2.1.8.4 0 --> PDU-MIB::outletApparentPower.4
48 # .1.3.6.1.4.1.13742.4.1.2.2.1.31.1 0 --> PDU-MIB::outletWattHours.1
49 # .1.3.6.1.4.1.13742.4.1.2.2.1.31.3 0 --> PDU-MIB::outletWattHours.3
50 # .1.3.6.1.4.1.13742.4.1.2.2.1.31.4 0 --> PDU-MIB::outletWattHours.4
53 def parse_raritan_px_outlets(info):
54 map_state = {
55 "-1": (2, "error"),
56 "0": (2, "off"),
57 "1": (0, "on"),
58 "2": (0, "cycling"),
60 parsed = {}
61 for index, state, current_str, voltage_str, \
62 power_str, appower_str, energy_str in info:
63 parsed[index] = {
64 "state": map_state.get(state, (3, "unknown")),
65 "current": float(current_str) / 1000,
66 "voltage": float(voltage_str) / 1000,
67 "power": float(power_str),
68 "appower": float(appower_str),
69 "energy": float(energy_str),
72 return parsed
75 def inventory_raritan_px_outlets(parsed):
76 return [ (index, {}) for index, values in parsed.items() \
77 if values["state"][1] == "on" ]
80 def check_raritan_px_outlets(item, params, parsed):
81 if item in parsed:
82 state, state_readable = parsed[item]["state"]
83 yield state, "Operational status: %s" % state_readable
84 for result in check_elphase(item, params, parsed):
85 yield result
88 check_info['raritan_px_outlets'] = {
89 'parse_function': parse_raritan_px_outlets,
90 'inventory_function': inventory_raritan_px_outlets,
91 'check_function': check_raritan_px_outlets,
92 'service_description': 'Outlet %s',
93 'has_perfdata': True,
94 'snmp_info': (
95 ".1.3.6.1.4.1.13742.4.1.2.2.1",
97 "1", # outletIndex
98 "3", # outletOperationalState
99 "4", # outletCurrent
100 "6", # outletVoltage
101 "7", # outletActivePower
102 "8", # outletApparentPower
103 "31", # outletWattHours
105 'snmp_scan_function': lambda oid: oid(".1.3.6.1.2.1.1.2.0") == ".1.3.6.1.4.1.13742.4",
106 'includes': ["elphase.include"],
107 'group': "el_inphase",