XMPP Notify Plugin for Icinga 2 (should work with nagios etc.)
- Copy
xmppnotify.py
to/etc/icinga2/scripts/
- Copy
xmppnotify.sample.cfg
to/etc/xmppnotify.cfg
and enter xmpp credentials - Copy
commands-xmppnotify.conf
to/etc/icinga2/conf.d/
.
template Notification "xmpp-host-notification" {
command = "xmpp-host-notification"
states = [ Up, Down ]
types = [ Problem, Acknowledgement, Recovery, Custom ]
period = "24x7"
interval = 8h
vars += {
notification_icingaweb2url = "https://monitoring.finnchristiansen.de/icingaweb2"
}
}
template Notification "xmpp-service-notification" {
command = "xmpp-service-notification"
states = [ OK, Warning, Critical, Unknown ]
types = [ Problem, Acknowledgement, Recovery, Custom ]
period = "24x7"
interval = 8h
vars += {
notification_icingaweb2url = "https://monitoring.finnchristiansen.de/icingaweb2"
}
}
apply Notification "xmpp-icingaadmin" to Host {
import "xmpp-host-notification"
user_groups = host.vars.notification.xmpp.groups
users = host.vars.notification.xmpp.users
assign where host.vars.notification.xmpp
}
apply Notification "xmpp-icingaadmin" to Service {
import "xmpp-service-notification"
user_groups = host.vars.notification.xmpp.groups
users = host.vars.notification.xmpp.users
assign where host.vars.notification.xmpp
}
object User "icingaadmin" {
import "generic-user"
display_name = "Icinga Admin"
groups = [ "icingaadmins" ]
email = "[email protected]"
vars.xmpp = "[email protected]"
}