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 ec22fb9c authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent 177ac397
No related branches found
No related tags found
No related merge requests found
No preview for this file type
...@@ -3,7 +3,10 @@ ...@@ -3,7 +3,10 @@
# Copyright (C) 2019 tribe29 GmbH - License: GNU General Public License v2 # Copyright (C) 2019 tribe29 GmbH - License: GNU General Public License v2
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and # This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package. # conditions defined in the file COPYING, which is part of this source code package.
#
# options added by thl-cmk[at]outlook[dot]com:
# method UDP, port, queries, max_ttl, source_interface, source_address, destination_address, description
#
def check_traceroute_arguments(params): def check_traceroute_arguments(params):
args = [] args = []
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
'adds the following options:\n' 'adds the following options:\n'
'- service description suffix\n' '- service description suffix\n'
'- alternate destination address\n' '- alternate destination address\n'
'- UDP method (without increasing the port for each probe)\n'
'- destination port for UDP/TCP path trace\n' '- destination port for UDP/TCP path trace\n'
'- max hops\n' '- max hops\n'
'- queries per hop\n' '- queries per hop\n'
......
...@@ -7,14 +7,11 @@ ...@@ -7,14 +7,11 @@
# URL : https://thl-cmk.hopto.org # URL : https://thl-cmk.hopto.org
# Date : 2021-12-04 # Date : 2021-12-04
# #
#
#
from cmk.gui.i18n import _ from cmk.gui.i18n import _
from cmk.gui.plugins.metrics import ( from cmk.gui.plugins.metrics import (
metric_info, metric_info,
graph_info,
perfometer_info perfometer_info
) )
......
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- encoding: utf-8; py-indent-offset: 4 -*- # -*- coding: utf-8 -*-
# #
# (c) 2013 Heinlein Support GmbH # License: GNU General Public License v2
# Robert Sander <r.sander@heinlein-support.de> #
# original form lib/check_mk/gui/plugins/wato/active_checks.py
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2021-12-03
#
# added: description, method UDP, port, destination_address, queries, max_ttl, source_interface, source_address
# #
# This 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. This file 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-
# ails. 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.i18n import _
from cmk.gui.valuespec import ( from cmk.gui.valuespec import (
......
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