Use check_load to monitor CPU usage

Hi,

where did you get the cpu_load_arguments custom variable from? That’s not how command parameters work, see here.

Also the load check command comes pre-defined inside the ITL. You don’t need to redefine that on your own, just take the power of adding it and set the required custom variables in the service apply rule.

apply Service "cpu-load" {
  check_command = "load"

  vars.load_wload1 = 0.3
  vars.load_wload5 = 0.25
  vars.load_wload15 = 0.2

  vars.load_cload1 = 0.15
  vars.load_cload5 = 0.1
  vars.load_cload15 = 0.05

  // ...

} 

Also, please don’t post screenshots from the configuration, rather use Markdown formatting to allow others to copy paste. Typing things from a picture is not fun.

Cheers,
Michael