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

Delete checkpoint_asg_tests.py

parent 194ddffd
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
#
#
register_check_parameters(
subgroup_applications,
'checkpoint_asg_tests',
_('Check Point ASG tests'),
Dictionary(
# help=_(''),
elements=[
('asg_tests_ignore',
ListOfStrings(
title=_('Index list of ASG tests to ignore'),
orientation='horizontal',
allow_empty=False,
valuespec=Integer(minvalue=1, maxvalue=99, allow_empty=False),
help=_('there will be no warning/critical if this tests are not "Passed"'),
)
),
('asg_tests_warning',
ListOfStrings(
title=_('Set monitoring state to warining if ASG test state is "Failed"'),
orientation='horizontal',
allow_empty=False,
valuespec=Integer(minvalue=1, maxvalue=99, allow_empty=False),
#help=_('there will be no warning/critical if this tests are not "Passed"'),
)
),
],
),
None,
match_type='dict',
)
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