Cacti THOLD threshold alerts to Slack
thold-slack.py is a script to send Cacti THOLD alert messages to Slack
This Python script is designed to ingest a Cacti THOLD email message as piped input from sendmail
and post the contents to a Slack channel as a rich format ‘attachment’ message as defined in the Slack API
It is highly recommended to run this through sendmail restricted shell (smrsh)
cd /tmp
git clone https://github.com/jamesboswell/thold-slack
cd thold-slack
# Edit thold-slack and set GLOBAL VARIABLES
cp thold-slack /etc/smrsh
chmod +x /etc/smrsh/thold-slack.py
Setup sendmail by doing the following, or manually editing /etc/aliases
You may, use any alias you choose, example below uses ‘thold-slack’
sudo echo "thold-slack: | /etc/smrsh/thold-slack.py" >> /etc/aliases
sudo newaliases
Optionally you can setup additional aliases that send THOLD messsages to different Slack channels by passing a channel name
For example to send to a #netadmin channel
sudo echo "thold-slack-netadmin: \"| /etc/smrsh/thold-slack.py netadmin\"" >> /etc/aliases
sudo newaliases
You will then need to setup your Cacti thresholds or threshold templates to send to the correct email alias as defined in previous steps.