/usr/share/check_mk/checks-man/kernel.util is in check-mk-server 1.2.2p3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | title: Check CPU usage (utilisation)
agents: linux
author: Mathias Kettner <mk@mathias-kettner.de>
license: GPL
distribution: check_mk
description:
This check measures the CPU utilization during the last check
cycle. A level can be set only on {wait} (disk wait). If you
want to set levels on your CPU usage you better use the check
{cpu.loads}.
perfdata:
Three variables: The percentage of time spent in {user}, {system} and {wait}
(disk wait). The idle time can be computed by substracting those three values
from 100%. The user value contains also {nice}.
inventory:
One check per host is created if the agent contains a {kernel}
section containing cpu information. The inventory creates the
check with the parameter {kernel_util_default_levels}, which is
preset to {None} thus imposing no levels and making the check always OK.
[parameters]
warning (int): The percentage of {wait} that triggers a warning level.
critical (int): The percentage of {wait} that triggers a critical level
The parameters may also be set to {None}, which makes the check alwas {OK}.
[configuration]
kernel_util_default_levels (int, int): Default levels used by inventorized
checks. This is present to {None}, which disables the levels.
|