Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit ec6574bb authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

Delete voltage_single.py

parent eb08316a
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2023-12-29
# File : voltage_single.py (WATO)
from cmk.gui.i18n import _
from cmk.gui.plugins.wato.utils import (
CheckParameterRulespecWithoutItem,
rulespec_registry,
RulespecGroupCheckParametersEnvironment,
)
from cmk.gui.plugins.wato.check_parameters.voltage import _parameter_valuespec_voltage
rulespec_registry.register(
CheckParameterRulespecWithoutItem(
check_group_name="voltage_single",
group=RulespecGroupCheckParametersEnvironment,
match_type="dict",
parameter_valuespec=_parameter_valuespec_voltage,
title=lambda: _("Voltage Sensor (without Sensor-ID)"),
)
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment