On 15.04.16 11:16, Bata Bálint András wrote:
object CheckCommand "nrpe" {

         import "plugin-check-command"

         command = [PluginDir + "/check_nrpe" ]

         arguments = {

         "-H" = "$host$"

         "-c" = "$check$"

         "-t", "$timeout$"

         "-a", "$args$"

         }

}

Why do you create your own custom nrpe CheckCommand definition?

object Service "nrpe-disk-/" {

   import "generic-service"

   host_name = "icingaclient.xxx.yyy"

   check_command = "nrpe"

   vars.nrpe_command = "check_disk"

   vars.nrpe_arguments = [ "20%", "10%", "/" ]

}

With your own definition, you have to vars.host, vars.check, vars.timeout and vars.args.

Otherwise use the original CheckCommand which comes with icinga2 and that actually uses those arguments as defined in your service...

-Gerald
_______________________________________________
icinga-users mailing list
icinga-users@lists.icinga.org
https://lists.icinga.org/mailman/listinfo/icinga-users

Reply via email to