Files and file name don't matter. Files are read and contain object definitions. It doesn't matter how the file is called and what's in there.

You don't show the host object "xxx" anywhere. That's where it starts.

You can create either individual service objects for an individual host like you do with your "HTTP" service.

Or you can create a number of service objects using the apply statement which creates a service object for each host object which matches the "assign where". Thus your "assign where host.name == "xxx"" will only match for a single host and thus it creates only a single service object.

For the matches you can use anything that is in the host object or you can also set additional variables, e.g.

object Host "linux1" {
  ...
  vars.os = "Linux"
}

apply Service "xyz" {
  ...
  assign where host.vars.os == "Linux"
}

This will create the service object "xyz" for each host which has the vars.os set to "Linux". If you have 100 host objects of that kind each will get the service applied. But of course, you can use any other attribute in the host object as well.

See

https://docs.icinga.com/icinga2/latest/doc/module/icinga2/chapter/monitoring-basics#using-apply

-Gerald


On 30/01/2017 21:13, Garrett Pye wrote:
Little confused about the usage of multiple services in a host file.
Below is a sample from one host file where intent is the automate
duplication for 308 servers all with different host_names. To invoke
each service does the host.conf file have to have each service separate?

My confusion with working in Icinga2 is defining the services in the
services.conf file and importing/calling it in each host file as a
single line item. Seems to me the same information is duplicated between
the template and service.conf files and each host_name.conf file.

------------------------------------------

object Service "HTTP" {
  host_name = "xxx"
  check_command = "http"
}
object Service "HTTPS" {
  host_name = "xxx"
  check_command = "http"
  vars.http_ssl = "true"
}

object Service "Current users" {
  host_name = "xxx"
  check_command = "users"
  vars.users_wgreater = "5"
}

object Service "SNMP-uptime" {
  host_name = "xxx"
  check_command = "snmp-uptime"
  vars.snmp_community = "wtacc5"
}

object Service "disk" {
  host_name = "xxx"
  check_command = "disk"

  vars.disk_all = "true"

}

object Service "Memory Usage" {
  host_name = "xxx"
  check_command = "mem"

  vars.mem_warning = "80"
  vars.mem_critical = "90"
}

apply Service "Total Processes" {
  import "generic-service"
  check_command = "procs"
  assign where host.name <http://host.name> == "xxx"
}



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


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

Reply via email to