Licenses: Updated the list of licenses and added a PDF containing all license texts
[check_mk.git] / .werks / 1403
blob912d502da32308419a8978ed0363c1b8131cb04b
1 Title: kernel.util: allow levels for the total CPU utilization
2 Level: 2
3 Component: checks
4 Compatible: incomp
5 Version: 1.2.5i6
6 Date: 1411043758
7 Class: feature
9 The CPU utilization check for Linux only allowed to set levels for the disk
10 wait percentage. The parameters have been converted to a dictionary and
11 now allow to set levels on the total CPU utilization as well.
13 Please note: if you have defined the variable {kernel_util_default_levels} in
14 your {main.mk}, then you need to convert this to a dictionary - otherwise it
15 will be ignored. Instead of
17 F+:main.mk
18 kernel_util_default_levels = (10, 20)
19 F-:
21 ... please now write...:
22 F+:main.mk
23 kernel_util_default_levels = { "iowait" : (10, 20) }
24 F-:
26 Users of WATO are not affected by this and do not need to change anything.