The problem is, that when I add
contact_groups sandradebug
it is still onlyadmins
that gets the notification and not alsosandradebug
.
Você reiniciou o Nagios? Sua configuração acima substituirá os valores do modelo e somente sandradebug
group receberá esses alertas.
How can I include
sandradebug
for this one host, so notifications are also sent there?
Herança de Objetos é o que você está procurando:
define host {
use linux-host
host_name example
alias example
address 10.10.10.10
hostgroups default-linux-services
contact_groups +sandradebug
}
Usando o sinal +
, a definição do host usa os dados no modelo e adiciona o sandradebug
aos alertas.