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

update project

parent 8f7e226b
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -8,5 +8,5 @@
'title': 'monitor Check Point firewall L2L VPN tunnel',
'version': '20210901.v0.1.2',
'version.min_required': '2.0.0',
'version.packaged': '2021.07.14',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
......@@ -25,40 +25,40 @@ from cmk.gui.plugins.wato import (
def _parameter_valuespec_checkpoint_l2l_vpn():
return Dictionary(
elements=[
('not_found_state',
MonitoringState(
title=_('Default state to report when tunnel can not be found anymore'),
help=_('Default state if a tunnel, which is not listed above in this rule, '
'can no longer be found.'),
default_value=3,
)),
('tunnels',
ListOf(
Tuple(
title=_('VPN Tunnel Endpoints'),
elements=[
TextUnicode(
title=_('Peer object name'),
help=_('The configured value must match a tunnel reported by the monitored '
'device.'),
allow_empty=False,
),
TextUnicode(
title=_('Tunnel Alias'),
help=_('You can configure an individual alias here for the tunnel matching '
'the Name configured in the field above.'),
),
MonitoringState(
default_value=2,
title=_('State if tunnel is not found'),
)]),
add_label=_('Add tunnel'),
movable=False,
title=_('VPN tunnel specific configuration'),
)),
],
)
elements=[
('not_found_state',
MonitoringState(
title=_('Default state to report when tunnel can not be found anymore'),
help=_('Default state if a tunnel, which is not listed above in this rule, '
'can no longer be found.'),
default_value=3,
)),
('tunnels',
ListOf(
Tuple(
title=_('VPN Tunnel Endpoints'),
elements=[
TextUnicode(
title=_('Peer object name'),
help=_('The configured value must match a tunnel reported by the monitored '
'device.'),
allow_empty=False,
),
TextUnicode(
title=_('Tunnel Alias'),
help=_('You can configure an individual alias here for the tunnel matching '
'the Name configured in the field above.'),
),
MonitoringState(
default_value=2,
title=_('State if tunnel is not found'),
)]),
add_label=_('Add tunnel'),
movable=False,
title=_('VPN tunnel specific configuration'),
)),
],
)
rulespec_registry.register(
......
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