Notificações do Nagios4 ao Telegram

2

Não consigo receber alertas dos meus nagios. Servidor no Debian. Instalado telegrama-cli em github.com/vysheng/tg

Arquivos de configuração do Nagios4.

commands.cfg:

#'notify-service-by-tg' command definition
define command{
        command_name    notify-service-by-tg
        command_line    /home/nagios/tg/bin/telegram-cli -WR -U root -D -e 'msg $_CONTACTTG$ $NOTIFICATIONTYPE$ Host : $HOSTNAME$ - Service : $SERVIC$
}
#'notify-host-by-tg' command definition
define command{
        command_name    notify-host-by-tg
        command_line    /home/nagios/tg/bin/telegram-cli -WR -U root -D -e 'msg $_CONTACTTG$  "$NOTIFICATIONTYPE$ Host : $HOSTNAME$ is $HOSTSTATE$ @ $
}

contacts.cfg:

define contact{

contact_name nagiosadmin;
use generic-contact;
alias Nagios Admin;
service_notification_period 24x7;
host_notification_period 24x7;
service_notification_options w,u,c,r,f,s;
email nagios@localhost;
_tg Anton_T;
service_notification_commands notify-service-by-tg;
host_notification_commands notify-host-by-tg;

}
define contactgroup{

contactgroup_name       admins
alias                   Nagios Administrators
members                 nagiosadmin

       }

Tendo este erro do nginx:

2015/12/31 20:56:47 [info] 512#0: *299 client closed connection while waiting for request, client: 1*8.*.*.*, server: 0.0.0.0:800

ajuda, plz!

    
por Anton_T 31.12.2015 / 19:19

1 resposta

1

Resolvido!

Você precisa ativar o código de telegrama como usuário nagios.

su - nagios

/home/nagios/tg/bin/telegram-cli -k /home/nagios/tg/tg-server.pub

e insira o código enviado para você como sms

    
por 14.01.2016 / 09:38

Tags