Refactoring: Moved check parameters from unsorted.py to dedicated modules (CMK-1393)
[check_mk.git] / doc / predictive / foo.wato
blob59f0cfcc5f3912dba9073114d28e776a109d9d40
1 #!/usr/bin/python
3 # WATO declaration for the check parameters of foo
4 register_check_parameters(
5 "My own checks", # main topic for this rule in WATO
6 "foobar", # name of WATO group, was declared in check (not always name of check)
7 "Levels for foo", # title of the WATO ruleset
8 Levels(
9 help=_("The foo check does check the foo of a bar. Here you can define parameters..."),
10 unit="processes",
11 default_difference=(10.0, 20.0), # Default settings when using absolute differences
12 default_levels=(100., 200.0), # Default levels when using non-predictive static levels
14 None, # Check has no item
15 None, # Match type, always None here