Refactoring: Moved check parameters from unsorted.py to dedicated modules (CMK-1393)
[check_mk.git] / checks / qnap_disks
blob3efc4a12501ef3af041aa86722df1eee4b66b266
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2014 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 def inventory_qnap_disks(info):
29 return [(x[0], None) for x in info if x[2] != "-5"]
32 def check_qnap_disks(item, _no_params, info):
33 map_states = {
34 "0": (0, "ready"),
35 "-4": (2, "unknown"),
36 "-5": (2, "no disk"),
37 "-6": (2, "invalid"),
38 "-9": (2, "read write error"),
41 for desc, temp, status, model, size, cond in info:
42 if desc == item:
43 state, state_readable = map_states.get(status, (3, "unknown"))
44 yield state, "Status: %s (%s)" % (state_readable, cond)
46 if "--" in cond:
47 yield 1, "SMART Information missing"
49 yield 0 , "Model: %s, Temperatur: %s, Size: %s" % \
50 (model, temp, size)
53 check_info["qnap_disks"] = {
54 "check_function" : check_qnap_disks,
55 "inventory_function" : inventory_qnap_disks,
56 "service_description" : "Disk %s",
57 "snmp_info" : (".1.3.6.1.4.1.24681.1.2.11.1",[
58 2, # Description
59 3, # Temperature
60 4, # Disk Status (-5 = missing)
61 5, # Disk Model
62 6, # Disk Size
63 7, # Status Text
64 ] ),
65 "snmp_scan_function" : lambda oid: oid('.1.3.6.1.2.1.1.1.0').startswith('Linux TS-') \
66 or oid('.1.3.6.1.2.1.1.1.0').startswith('NAS QR802')