blob: 5c0566e11f78e17956a4a4b6d309088e46eb4f74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# adjust.mk - checks we need to adjust the defaults
## global defaults
# memory usage (default 150/200%, float val indicates % of physical RAM)
memused_default_levels = (90.0, 95.0)
## host overrides
# some check types cannot be adjusted via check_parameters, so we explicitly
# create redundant checks using host lists or tags
checks += [
( ['foo.example.org','bar.example.org'], 'cpu.threads', None, (6000, 7000) ),
]
|