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

update project

parent ac8cc8a7
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
# added warning/critical is chassis grade not equeal maxGrade
# 2021-09-10: rewrite parse function
# 2021-09-11: added WATO, cleanup
# 2022-10-23: fixed warning on upgrade "non-empty params vanished" for discovery_chassis and discovery_sgms
#
# sample snmpwalk
# .1.3.6.1.4.1.2620.1.48.28.1.0 = STRING: "Multi"
......
No preview for this file type
......@@ -8,7 +8,7 @@
'name': 'checkpoint_asg_chassis',
'num_files': 3,
'title': 'Check Point Maestro SMO ASG Chassis',
'version': '20210911.v0.3',
'version': '221023.v0.3a',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
......@@ -7,6 +7,7 @@ from cmk.gui.valuespec import (
Dictionary,
DropdownChoice,
MonitoringState,
Integer,
)
from cmk.gui.plugins.wato import (
......@@ -17,7 +18,8 @@ from cmk.gui.plugins.wato import (
def _parameter_valuespec_checkpoint_asg_chassis():
return Dictionary(elements=[
return Dictionary(
elements=[
('desired_chassis_active',
DropdownChoice(
title=_('Desired active chassis'),
......@@ -65,7 +67,11 @@ def _parameter_valuespec_checkpoint_asg_chassis():
title=_('State if number of SGMs has canged'),
help=_('Monitoring state if number of SGMs differs from discovery time'),
)),
])
('discovery_chassis', Integer()), # added by plugin discovery function
('discovery_sgms', Integer()), # added by plugin discovery function
],
hidden_keys=['discovery_chassis', 'discovery_sgms'],
)
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