On 2016-04-25 18:01, Quinton Phil P wrote:
In the icingaweb2 dashboard, the ProcessCheck instance details look
like this:

ProcessCheck{ args = "-bl -q15m" process = "/usr/lib/sendmail" }

But in the icinga2.log error above, they look like this:

ProcessCheck{\n      args = "-bl -q15m"\n    process =
"/usr/lib/sendmail"\n}
You can query the actual icinga2 object name using the "icinga2 object list" command. Currently, you are creating the service with a complete dictionary as its name, which is definitely not useful (and probably is also the reason for the behaviour you are experiencing).

If you have a look at the provided default disk check example, you can find out on how to just use the dictionary's name as service name:

apply Service for (disk => config in host.vars.disks) {
  import "generic-service"

  check_command = "disk"

  vars += config
}

Using the => operator the dynamic variable "disk" is being assigned the current key of the dictionary, instead of the whole dictionary. You can read more about apply for including => here: http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/language-reference#apply-for

Hope that helps!

Regards,
Markus
_______________________________________________
icinga-users mailing list
icinga-users@lists.icinga.org
https://lists.icinga.org/mailman/listinfo/icinga-users

Reply via email to