Re: [icinga-users] Service on HostGroup

2015-03-18 Thread Gunnar Beutner
The syntax for the ‚in‘ operator is: in For example: "group1" in host.groups From: Ghaith Al Kayyem Reply-To: "icinga-users@lists.icinga.org" Date: Wednesday 18 March 2015 17:31 To: "joao@gmail.com" Cc: "icinga-users@lists.ic

[icinga-users] icinga node list remove node(s)

2015-03-18 Thread Max Zhang
In client with local configuration mode, under "Generate Configuration for Client Services on the Master", there is "If hosts or services disappeared from the client discovery, it will remove the existing configuration objects from the config repository. " What is the condition that will result in

[icinga-users] check status of ZFS pool on Linux host with Icinga monitoring system

2015-03-18 Thread Sofya Urbaniec
I have a server which is used for backup storage. It's running ZFS on Linux, configured with a RAID z2 data pool and shared via Samba. I need to monitor the ZFS filesystem to at least be able to see how much space is available. I thought a simple check_disk plugin will do this job. I'm able t

Re: [icinga-users] Icinga2 not starting after update ...

2015-03-18 Thread João Graça
Hello, >What's New in Version 2.3.0 >>Changes >>>Improved configuration validation "Dashes are no longer permitted in identifier names (as their semantics are ambiguous)" I think you have to change the variable names... Best, João Graça On 18-03-2015 17:38, Alan Bunch wrote: > I was running Ici

Re: [icinga-users] Icinga2 not starting after update ...

2015-03-18 Thread Alan Bunch
Thank you that is what I suspected. Alan On 3/18/2015 1:47 PM, João Graça wrote: Hello, What's New in Version 2.3.0 Changes Improved configuration validation "Dashes are no longer permitted in identifier names (as their semantics are ambiguous)" I think you have to change the variable nam

[icinga-users] Icinga2 not starting after update ...

2015-03-18 Thread Alan Bunch
I was running Icinga2 installed from the repos. Yum updated to the following: python-icinga2-2.1.1-1.el6.x86_64 icinga2-bin-2.3.2-1.el6.x86_64 icinga-gui-1.12.2-0.el6.x86_64 icinga-web-1.12.0-1.el6.noarch icinga-web-mysql-1.12.0-1.el6.noarch icinga2-common-2.3.2-1.el6.x86_64 icinga-doc-1.12.2-0.e

Re: [icinga-users] Service on HostGroup

2015-03-18 Thread Pavel Sukhoy
Hi, You should try to use: assign where "Group1" in host.groups More info: http://docs.icinga.org/icinga2/latest/doc/module/icinga2/toc#!/icinga2/latest/doc/module/icinga2/chapter/monitoring-basics#using-apply 18.03.2015 19:31, Ghaith Al Kayyem пишет: Hi Joao, Do you know the correct directi

Re: [icinga-users] Service on HostGroup

2015-03-18 Thread Ghaith Al Kayyem
Hi Joao, Do you know the correct directive that we should use in service: i tried below two options, and both of them not applied on the servers inside the group. apply Service "ssh_check_mem"{ import "generic-service" check_command = "by_ssh_check_mem" vars.by_ssh_logname = "icinga" as

Re: [icinga-users] Service on HostGroup

2015-03-18 Thread João Graça
Hello Ghaith, I don't know if is the best practice but you can use the "assign where matchs" directive that can be found in the docs... And i think there is examples in the files that come with the installation in "conf.d" directory... Best, João Graça Em 18/03/2015 15:35, "Ghaith Al Kayyem" es

[icinga-users] Service on HostGroup

2015-03-18 Thread Ghaith Al Kayyem
Dear All, could you guide me about applying one service or commands on all servers inside one HostGroup? I tried to include groups directive inside each host definition, but i can't find any option to apply the service on all host group members. Thanks.