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

update project

parent b26c81f3
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,9 @@
# 2021-03-03: rewrite for CMK 2.0
# 2021-09-10: changed render function to networkbandwidth
# 2021-09-11: added WTO options
# 2022-10-23: fixed warning on upgrade "non-empty params vanished" for asgNetIfSpeed
#
# sample snmpwalk (for one interface)
# .1.3.6.1.4.1.2620.1.48.26.1.1.1.4.0 = Gauge32: 4
# .1.3.6.1.4.1.2620.1.48.26.1.1.2.4.0 = STRING: "bond2.602"
......
No preview for this file type
......@@ -9,7 +9,7 @@
'name': 'checkpoint_asg_interface',
'num_files': 3,
'title': 'Check Point Maestro SMO interfaces',
'version': '20210911.v0.2',
'version': '201023.v0.2a',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
......@@ -17,7 +17,8 @@ from cmk.gui.plugins.wato import (
def _parameter_valuespec_checkpoint_asg_interface():
return Dictionary(elements=[
return Dictionary(
elements=[
('state_not_full_duplex',
MonitoringState(
default_value=2,
......@@ -36,7 +37,10 @@ def _parameter_valuespec_checkpoint_asg_interface():
title=_('State if speed changed'),
help=_('Monitoring state if interface is differs from discovery time'),
)),
])
('asgNetIfSpeed', TextAscii()), # added by plugin discovery function
],
hidden_keys=['asgNetIfSpeed']
)
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