Notifications Nagios par email - Réseaux - Systèmes & Réseaux Pro
Marsh Posté le 15-03-2012 à 13:38:39
Tu as une section 'contact' mais pas de 'contact_group' ? Ca doit être juste un truc de ce genre qui te manque :
define contactgroup{
contactgroup_name admins
alias Nagios Administrators
members SteeveFautre
}
ca permettra à Nagios de faire le lien entre ton contact et son groupe, vu que tu pourrais avoir d'autres contacts qui sont notifés pour le même host/service.
Marsh Posté le 15-03-2012 à 14:40:48
Renseigne-toi sur host_notification_options dans contact, et notification_option dans host.cfg
, modifie ce champ. avec les 4 lettres u,r etc...
Cela envoie des mails si UNKNOWN, OK, WARNING, CITICAL
Marsh Posté le 14-03-2012 à 11:02:32
Bonjour,
Je souhaite superviser des postes avec Nagios sur Windows.
Je réussi à avoir des notifications des services lorsqu'ils sont critiques, mais je n'arrive pas à recevoir des notifications lorsque l'hôte est injoignable.
Voici les différents fichiers de configuration :
hote.cfg
define host{
use windows-server
host_name Steeve64
alias Steeve64
address x.x.x.x
check_command check-host-alive
check_interval 1
retry_interval 1
check_period 24x7
check_freshness 1
notification_options d,u,r
notifications_enabled 1
contact_groups admins
#initial_state d
active_checks_enabled 1
passive_checks_enabled 1
max_check_attempts 10
}
define service{
use generic-service
host_name Steeve64
service_description Mémoire_NRPE
check_command check_nrpe!alias_mem
check_interval 1
retry_interval 1
check_freshness 1
notification_options c,r
notifications_enabled 1
contact_groups admins
}
contact.cfg
define contact{
contact_name SteeveFautre
use generic-contact
alias SteeveFautre
host_notifications_enabled 1
service_notifications_enabled 1
host_notification_options d,u
host_notification_period 24x7
host_notification_commands notify-host-by-email
service_notification_options c,r
service_notification_commands notify-service-by-email
service_notification_period 24x7
email x@x.com
contactgroups admins
can_submit_commands 1
retain_status_information 1
retain_nonstatus_information 1
}
Avez vous une idée pourquoi cela ne marche pas pour recevoir des notifications de l'hôte ?