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
Also available on Icinga2 exchange portal
- Awesome Slack notifications:
- Mobile Icinga monitoring alerts as well:
- Notifications inside Slack about your Host and Service state changes
- In case of failure get notified with the nicely-formatted output of the failing check
- Easy integration with Icinga2
- Only native Icinga2 features are used, no bash, perl, etc - keeps your server/virtual machine/docker instances small
- Debian ready-to-use package to reduce maintenance and automated installation effort
- Uses Lambdas!
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
We use reprepro to distribute our package from github.
You would need to install apt-transport-https
that supports adding an https
based repository to the debian repo list.
here are the steps to perform:
apt-get install -y apt-transport-https
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 10779AB4
add-apt-repository "deb https://raw.githubusercontent.com/nisabek/icinga2-slack-notifications/master/reprepro general main"
apt-get update
You are now ready to install the plugin with
apt-get install icinga2-slack-notifications
This will create the plugin files in the correct icinga2
conf directory.
- clone the repository under your Icinga2
/etc/icinga2/conf.d
directory
git clone [email protected]: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"
}
Make sure to restart icinga after the changes
systemctl restart icinga2
- 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
] - slack_notifications_icon_dictionary [Default:
{
"DOWNTIMEREMOVED" = "leftwards_arrow_with_hook",
"ACKNOWLEDGEMENT" = "ballot_box_with_check",
"PROBLEM" = "red_circle",
"RECOVERY" = "large_blue_circle",
"DOWNTIMESTART" = "arrow_up_small",
"DOWNTIMEEND" = "arrow_down_small",
"FLAPPINGSTART" = "small_red_triangle",
"FLAPPINGEND" = "small_red_triangle_down",
"CUSTOM" = "speaking_head_in_silhouette"
}
]
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"
}
You can choose to override the whole icon dictionary, or override specific types only:
Example override the whole icon dictionary
template Notification "slack-notifications-user-configuration" {
import "slack-notifications-default-configuration"
vars.slack_notifications_webhook_url = "https://hooks.slack.com/services/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"
vars.slack_notifications_icinga2_base_url = "http://localhost:80/icingaweb2"
vars.slack_notifications_channel = "#icinga2-private-test"
vars.slack_notifications_icon_dictionary = {
"DOWNTIMEREMOVED" = "leftwards_arrow_with_hook",
"ACKNOWLEDGEMENT" = "ballot_box_with_check",
"PROBLEM" = "bomb",
"RECOVERY" = "large_blue_circle",
"DOWNTIMESTART" = "up",
"DOWNTIMEEND" = "arrow_double_down",
"FLAPPINGSTART" = "small_red_triangle",
"FLAPPINGEND" = "small_red_triangle_down",
"CUSTOM" = "speaking_head_in_silhouette"
}
...
Example override specific type
template Notification "slack-notifications-user-configuration" {
import "slack-notifications-default-configuration"
vars.slack_notifications_webhook_url = "https://hooks.slack.com/services/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"
vars.slack_notifications_icinga2_base_url = "http://localhost:80/icingaweb2"
vars.slack_notifications_channel = "#icinga2-private-test"
vars.slack_notifications_icon_dictionary.CUSTOM = "cherries"
...
}
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