checkmk-plugins/check_mk-infoblox/local/share/check_mk/web/plugins/wato/infoblox_count.py

64 lines
2.4 KiB
Python

#!/usr/bin/env python3
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# +------------------------------------------------------------------+
# | ____ _ _ __ __ _ __ |
# | / ___| |__ ___ ___| | __ | \/ | |/ / |
# | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
# | | |___| | | | __/ (__| < | | | | . \ |
# | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
# | |
# | Copyright Mathias Kettner 2014 mk@mathias-kettner.de |
# +------------------------------------------------------------------+
#
# This file is part of Check_MK.
# The official homepage is at http://mathias-kettner.de/check_mk.
#
# check_mk is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation in version 2. check_mk is distributed
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
# out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU General Public License for more de-
# tails. You should have received a copy of the GNU General Public
# License along with GNU Make; see the file COPYING. If not, write
# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
# Boston, MA 02110-1301 USA.
from cmk.gui.i18n import _
from cmk.gui.valuespec import (
Dictionary,
TextAscii,
Tuple,
Integer,
)
from cmk.gui.plugins.wato import (
CheckParameterRulespecWithItem,
rulespec_registry,
RulespecGroupCheckParametersNetworking,
)
def _parameter_valuespec_infoblox_count():
return Dictionary(elements=[
("infoblox_count",
Tuple(
title=_("DNS Count"),
elements=[
Integer(title=_("Warning above"), default_value=50, unit=_("Requests")),
Integer(title=_("Critical above"), default_value=100, unit=_("Requests")),
],
)),
],)
rulespec_registry.register(
CheckParameterRulespecWithItem(
check_group_name="infoblox_count",
group=RulespecGroupCheckParametersNetworking,
item_spec=lambda: TextAscii(title=_("Service")),
match_type="dict",
parameter_valuespec=_parameter_valuespec_infoblox_count,
title=lambda: _("Infoblox DNS Count"),
))