diff --git a/README.md b/README.md index 0bad52470380c52092af869347027c9a85b426ba..41ed872b7692723cea48e7079ac047c7b5195e21 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[PACKAGE]: ../../raw/master/mkp/active_check_traceroute-0.0.2-20230607.mkp "active_check_traceroute-0.0.2-20230607.mkp" +[PACKAGE]: ../../raw/master/mkp/active_check_traceroute-0.0.3-20240526.mkp "active_check_traceroute-0.0.3-20240526.mkp" # Extended traceroute plugin This is a extension for the original CheckMK traceroute plugin (Routing) diff --git a/mkp/active_check_traceroute-0.0.3-20240526.mkp b/mkp/active_check_traceroute-0.0.3-20240526.mkp new file mode 100644 index 0000000000000000000000000000000000000000..5a7c43de3d4d2f9e893342e72f1d7af1da5447a0 Binary files /dev/null and b/mkp/active_check_traceroute-0.0.3-20240526.mkp differ diff --git a/source/gui/wato/active_checks_routing.py b/source/gui/wato/check_parameters/active_checks_routing.py similarity index 97% rename from source/gui/wato/active_checks_routing.py rename to source/gui/wato/check_parameters/active_checks_routing.py index 5e7c237de7f749242d38f4fb4f7c6640065944c2..5ae71f671a749095e3c1f4fd21ca52180ac6b536 100644 --- a/source/gui/wato/active_checks_routing.py +++ b/source/gui/wato/check_parameters/active_checks_routing.py @@ -10,28 +10,26 @@ # Date : 2021-12-03 # # added: description, method UDP, port, destination_address, queries, max_ttl, source_interface, source_address -# +# 2024-05-26: moved to check_parameters +# adjusted import of RulespecGroupActiveChecks for CMK 2.2.x from cmk.gui.i18n import _ +from cmk.gui.plugins.wato.active_checks.common import RulespecGroupActiveChecks from cmk.gui.valuespec import ( - Dictionary, - ListOf, - Tuple, - Transform, Checkbox, + Dictionary, DropdownChoice, - TextInput, Integer, + ListOf, TextAscii, + TextInput, + Transform, + Tuple, ) from cmk.gui.plugins.wato.utils import ( - rulespec_registry, HostRulespec, -) - -from cmk.gui.plugins.wato.active_checks import ( - RulespecGroupActiveChecks + rulespec_registry, ) diff --git a/source/packages/active_check_traceroute b/source/packages/active_check_traceroute index 12ad6768c897c234ac9e7f2209095e05bb5ccb5c..e2c50f6b9625c6851c54ccb47f51c8cc4fe7f36d 100644 --- a/source/packages/active_check_traceroute +++ b/source/packages/active_check_traceroute @@ -28,11 +28,12 @@ 'on Ubuntu 20.04.3 LTS.\n', 'download_url': 'https://thl-cmk.hopto.org', 'files': {'checks': ['check_traceroute'], - 'gui': ['metrics/traceroute.py', 'wato/active_checks_routing.py'], + 'gui': ['metrics/traceroute.py', + 'wato/check_parameters/active_checks_routing.py'], 'lib': ['nagios/plugins/check_traceroute']}, 'name': 'active_check_traceroute', 'title': 'Check Traceroute (extended)', - 'version': '0.0.2-20230607', - 'version.min_required': '2.1.0b1', + 'version': '0.0.3-20240526', + 'version.min_required': '2.2.0b1', 'version.packaged': '2.2.0p24', - 'version.usable_until': '2.2.0b1'} + 'version.usable_until': '2.3.0b1'}