Icinga2 notification integration with slack
Native, easy to use Icinga2 NotificationCommand
to send Host and Service notifications to pre-configured Slack channel - with only 1 external dependency: curl
- Awesome Slack notifications:
We found the following 2 existing Icinga2 to Slack integrations.
-
https://github.com/spjmurray/slack-icinga2
This plugin provides a polling interface towards Icinga2, giving the possibility to query the Icinga2 API and get information.
Since we cannot open our firewalls to enable access for slack servers to our Icinga2 instances, we need to have Icinga2 sending push notifications to Slack to report our Host and Service state changes.
-
https://github.com/jjethwa/icinga2-slack-notification
The plugin provides the possibility to send NotificationCommand to slack, however we found the following downsides to be show stoppers for us:
- Does not use Lambdas!
- The Integration is time consuming and cumbersome
- The author requires you to modify his source files in order to configure the slack webhook and channel. So we'd have to configure everything again when we have to install an update of that integration.
- No Debian package available, which leads to increased installation and maintenance effort.
- Numerous bugs since the host output is not properly encoded:
- as shell argument before it's passed to the shell script
- as JSON before it's send to Slacks REST API
- TBD
- clone the repository under your Icinga2
/etc/icinga2/conf.d
directory
git clone git@github.com:nisabek/icinga2-slack-notifications.git /etc/icinga2/conf.d/
- Use the
slack-notifications-user-configuration.conf.template
file as reference to configure your Slack Webhook URL and Icinga2 Base URL to create your ownslack-notifications-user-configuration.conf
cp /etc/icinga2/conf.d/slack-notifications/slack-notifications-user-configuration.conf.template /etc/icinga2/conf.d/slack-notifications/slack-notifications-user-configuration.conf
- Fix permissions
chown -R root:nagios /etc/icinga2/conf.d/slack-notifications
chmod 0750 /etc/icinga2/conf.d/slack-notifications
chmod 0640 /etc/icinga2/conf.d/slack-notifications/*
In order for the slack-notifications to work you need at least the following icinga2 features enabled
checker command notification
In order to see the list of currently enabled features execute the following command
icinga2 feature list
In order to enable a feature use
icinga2 feature enable FEATURE_NAME
- Configure Slack Webhook and Icinga2 web URLs in
/etc/icinga2/conf.d/slack-notifications/slack-notifications-user-configuration.conf
template Notification "slack-notifications-user-configuration" {
import "slack-notifications-default-configuration"
vars.slack_notifications_webhook_url = "<YOUR SLACK WEBHOOK URL>, e.g. https://hooks.slack.com/services/TOKEN1/TOKEN2"
vars.slack_notifications_icinga2_base_url = "<YOUR ICINGA2 BASE URL>, e.g. http://icinga-web.yourcompany.com/icingaweb2"
}
...
- In order to enable the slack-notifications for Services add
vars.slack_notifications = "enabled"
to your Service template, e.g. in/etc/icinga2/conf.d/templates.conf
template Service "generic-service" {
max_check_attempts = 5
check_interval = 1m
retry_interval = 30s
vars.slack_notifications = "enabled"
}
In order to enable the slack-notifications for Hosts add vars.slack_notifications = "enabled"
to your Host template, e.g. in /etc/icinga2/conf.d/templates.conf
template Host "generic-host" {
max_check_attempts = 5
check_interval = 1m
retry_interval = 30s
vars.slack_notifications = "enabled"
}
- Further customizations [optional]
You can customize the following parameters of slack-notifications :
- slack_notifications_channel [Default:
#monitoring_alerts
] - slack_notifications_botname [Default:
icinga2
] - slack_notifications_plugin_output_max_length [Default:
3500
]
In order to do so, place the desired parameter into slack-notifications-user-configuration.conf
file.
Note
Objects as well as templates themselves can import an arbitrary number of other templates. Attributes inherited from a template can be overridden in the object if necessary.
The slack-notifications-user-configuration
section applies to both Host and Service, whereas the
slack-notifications-user-configuration-hosts
and slack-notifications-user-configuration-services
sections apply to Host and Service respectively
Example channel name configuration for Service notifications
template Notification "slack-notifications-user-configuration" {
import "slack-notifications-default-configuration"
vars.slack_notifications_webhook_url = "<YOUR SLACK WEBHOOK URL>, e.g. https://hooks.slack.com/services/TOKEN1/TOKEN2"
vars.slack_notifications_icinga2_base_url = "<YOUR ICINGA2 BASE URL>, e.g. http://icinga-web.yourcompany.com/icingaweb2"
}
template Notification "slack-notifications-user-configuration-hosts" {
import "slack-notifications-default-configuration-hosts"
interval = 1m
}
template Notification "slack-notifications-user-configuration-services" {
import "slack-notifications-default-configuration-services"
interval = 3m
vars.slack_notifications_channel = "#monitoring_alerts_for_service"
}
If you, for some reason, want to disable the slack-notifications from icinga2 change the following parameter inside the corresponding Host or Service configuration object/template:
vars.slack_notifications == "disabled"
Besides configuring the slack-notifications parameters you can also configure other Icinga2 specific configuration parameters of the Host and Service, e.g.:
- types
- user_groups
- interval
- period
slack-notifications uses the icinga2 native [NotificationCommand] (https://docs.icinga.com/icinga2/latest/doc/module/icinga2/chapter/object-types#objecttype-notificationcommand)
to collect the required data and send a message to configured slack channel using curl
The implementation can be found in slack-notifications-command.conf
and it uses Lambdas!
The slack-notifications command provides detailed debug logs. In order to see them, make sure the debuglog
feature of icinga2 is enabled.
icinga2 feature enable debuglog
After that you should see the logs in /var/log/icinga2/debug.log
file. All the slack-notifications specific logs are pre-pended with "debug/slack-notifications"
Use the following grep for troubleshooting:
grep "warning/PluginNotificationTask\|slack-notifications" /var/log/icinga2/debug.log