object Host "bling.cluster.chapril.org" { check_command = "hostalive" address = "192.168.1.42" address6 = "dead:beef:dead:beef:dead:beef:dead:beef" vars.dhcp = true vars.client_endpoint = name /* Set custom attribute `os` for hostgroup assignment in `groups.conf`. */ vars.os = "Debian" vars.os_version = "Stretch" vars.cluster = true vars.sqlserver = "mysql" vars.httpd = "nginx" /* Define disks and attributes for service apply rules in `services.conf`. */ vars.disks["disk"] = { } vars.disks["disk /"] = { disk_partitions = "/" } vars.disks["disk /var"] = { disk_partitions = "/var" } vars.disks["disk /tmp"] = { disk_partitions = "/tmp" } vars.http_vhosts["Home page"] = { http_vhost = "chapril.org" http_uri = "/" http_string = "Cha ronronne !" http_ssl = true } /* Define processes and attributes */ vars.process["Chatonic"] = { procs_command = "python3" procs_argument = "chatonic.py" procs_critical = "1:1" } /* Define notification mail attributes for notification apply rules in `notifications.conf`. */ vars.notification["mail"] = { /* The UserGroup `icingaadmins` is defined in `users.conf`. */ groups = [ "icingaadmins" ] } }