Refactoring: Moved last application check parameters from unsorted.py to dedicated...
[check_mk.git] / cmk / gui / plugins / wato / check_parameters / oracle_logswitches.py
blob86ed7ebd25337b444556783da9fccdb68a2a7f50
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.
27 from cmk.gui.i18n import _
28 from cmk.gui.valuespec import (
29 Dictionary,
30 Integer,
31 TextAscii,
32 Transform,
33 Tuple,
35 from cmk.gui.plugins.wato import (
36 RulespecGroupCheckParametersApplications,
37 register_check_parameters,
41 def transform_oracle_logswitches(params):
42 if isinstance(params, tuple):
43 return {
44 'levels': (params[2], params[3]),
45 'levels_lower': (params[1], params[0]),
47 return params
50 register_check_parameters(
51 RulespecGroupCheckParametersApplications,
52 "oracle_logswitches",
53 _("Oracle Logswitches"),
54 Transform(
55 Dictionary(
56 help=_("This check monitors the number of log switches of an ORACLE "
57 "database instance in the last 60 minutes. You can set levels "
58 "for upper and lower bounds."),
59 elements=[
61 'levels',
62 Tuple(
63 title=_("Set upper Levels"),
64 elements=[
65 Integer(
66 title=_("Warning at or above"),
67 unit=_("log switches / hour"),
68 default_value=50),
69 Integer(
70 title=_("Critical at or above"),
71 unit=_("log switches / hour"),
72 default_value=100),
73 ]),
76 'levels_lower',
77 Tuple(
78 title=_("Set lower Levels"),
79 elements=[
80 Integer(
81 title=_("Warning at or below"),
82 unit=_("log switches / hour"),
83 default_value=-1),
84 Integer(
85 title=_("Critical at or below"),
86 unit=_("log switches / hour"),
87 default_value=-1),
88 ]),
92 forth=transform_oracle_logswitches,
94 TextAscii(title=_("Database SID"), size=12, allow_empty=False),
95 "first",