Add support for Checkmk monitoring service.

This commit is contained in:
2019-06-20 14:06:00 +02:00
parent aead4e0ba8
commit 07ffaea9a7
6 changed files with 147 additions and 0 deletions

View File

@ -30,6 +30,7 @@ standard_cups_port=$standard_ipp_port
standard_print_raw_port=515
standard_print_port=9100
standard_remote_console_port=5900
standard_checkmk_port=6556
# - IPsec - Internet Security Association and
# - Key Management Protocol

View File

@ -852,6 +852,25 @@ declare -A munin_local_client_ip_arr
munin_local_port=4949
# ======
# - Checkmk Monitoring Service (local network)
# ======
# - Checkmk Service Gateway (usually TCP port 6556)
# -
checkmk_service_gateway=false
# - Checkmk Server local Networks (usually TCP port 6556)
# -
# - Blank separated list
# -
checkmk_local_server_ips=""
# - checkmk Port
# -
checkmk_local_port="$standard_checkmk_port"
# ======
# - PowerChut Network Shutdown (PCNS)
# ======

View File

@ -818,6 +818,25 @@ declare -A munin_local_client_ip_arr
munin_local_port=4949
# ======
# - Checkmk Monitoring Service (local network)
# ======
# - Checkmk Service Gateway (usually TCP port 6556)
# -
checkmk_service_gateway=false
# - Checkmk Server local Networks (usually TCP port 6556)
# -
# - Blank separated list
# -
checkmk_local_server_ips=""
# - checkmk Port
# -
checkmk_local_port="$standard_checkmk_port"
# ======
# - PowerChut Network Shutdown (PCNS)
# ======

View File

@ -335,6 +335,14 @@ for _ip in $munin_local_server_ips ; do
munin_local_server_ip_arr+=("$_ip")
done
# ---
# - IP Adresses Checkmk Monitoring Service
# ---
declare -a checkmk_local_server_ip_arr
for _ip in $checkmk_local_server_ips ; do
checkmk_local_server_ip_arr+=("$_ip")
done
# ---
# - IP Adresses XyMon
# ---