- Check_MK Telegram notification
- Check_MK RAW version 1.6.0_p18
- Check_MK RAW version 2.0.0_p8 to 2.0.0p31
- Check_MK RAW version 2.1.0p30
- Check_MK RAW version 2.2.0p17 for RedHat/CentOS/AlmaLinux/RockyLinux 8 and 9
- Check_MK RAW version 2.3.0p6 for RedHat/CentOS/AlmaLinux/RockyLinux 8 and 9
- Should also work with other versions of Check_MK
Notifications are usually sent via a Telegram group. Here is an example of how a Telegram notification is structured.
In order for Check_MK to send alerts (notifications) to the Telegram Messenger, we need
- a Telegram bot
- a username for the bot
- an API token
- a Telegram Chat- or Group-ID
There are a lot of good instructions for this on the Internet, so this is not part of this documentation.
Change to your Check_MK site user
su - mysite
Change to the notification directory
cd ~/local/share/check_mk/notifications/
Download the Telegram notify script from Git repository (new subfolder will be created)
git clone https://github.com/filipnet/checkmk-telegram-notify.git
Give the script execution permissions
chmod +x checkmk-telegram-notify/check_mk_telegram-notify.sh
Create Symlink to enable the Plugin
ln -s checkmk-telegram-notify/check_mk_telegram-notify.sh check_mk_telegram-notify.sh
su - mysite
cd ~/local/share/check_mk/notifications/checkmk-telegram-notify
git pull
Now you can create your own alarm rules in Check_MK.
Setup → Events → Notifications
First create a clone of your existing mail notification rule
- Change the description (e.g. Notify all contacts of a host/service via Telegram)
- The notification method is "Push Notification (by Telegram)"
- Select option "Call with the following parameters:"
- As the first parameter we set the Telegram token ID (without bot-prefix)
- The second parameter is the Telegram Chat-ID or Telegram Group-ID
Referring to #6 and #15 at this point the note that initially only one field is displayed, further fields are only displayed after the first field has been filled.
Now you can create your own alarm rules in Check_MK.
WATO → Notifications → New Rule → Notification Method → Push Notification (using Telegram)
First create a clone of your existing mail notification rule
- Change the description (e.g. Notify all contacts of a host/service via Telegram)
- The notification method is "Push Notification (by Telegram)"
- Select option "Call with the following parameters:"
- As the first parameter we set the Telegram token ID (without bot-prefix)
- The second parameter is the Telegram Chat-ID or Telegram Group-ID
If everything was ok, you will see your new Notification Rule afterwards
To activate it you have to press "1 Change" and "Activate affected"
Since Check_MK 2.0.0 it is calles "Active on selected sites"
To ensure that the parameters are also transferred in the event of an alert, it is strongly recommended that the Check_MK instance is restarted.
su - mysite
omd stop
omd start
The current version of this script allows you to optionally enable IP anonymization. This gives you the option to comply with your own privacy policy or the recommendations of data protection authorities in certain countries if they prohibit the transmission of the full IP address. This masks IPv4 and IPv6 IP addresses before they are transmitted in a message to the Telegram service.
The activation of the privacy settings is realized directly in the Notification Rules in Check_MK by NOTIFY_PARAMETER_3, here the value "privacy" has to be entered:
There are certainly different requirements for privacy and masquerading of IP addresses. In the script, the IPv4 IP address is split into the 4 octets, the IPv6 address into the 8 columns. This allows to control very individually which parts of the addresses are sent via Telegram and which are not. Both, placeholders and manipulations are basically possible here.
The adjustment is done exclusively in the following two lines of the script.
# Adjust the output to your privacy needs here (Details in the readme.md)
NOTIFY_HOST_ADDRESS_4="${sec1}.${sec2}.2.${sec4}"
NOTIFY_HOST_ADDRESS_6="${sec1}:${sec2}:${sec3}:${sec4}:ffff:ffff:ffff:${sec8}"
Explanation for the example configuration above:
- 192.168.143.104 --> 192.168.2.104
- 2001:db8:85a3:8d3:1319:8a2e:370:7348 --> 2001:db8:85a3:8d3:ffff:ffff:ffff:7348
A different approach is to use the 'Pager address' field in Check_MK's user properties. This gets exported as $NOTIFY_CONTACTPAGER variable to the script and as such all that's needed is:
if [ -z ${NOTIFY_CONTACTPAGER} ]; then
echo "No pager address provided to be used as Chat-ID. Exiting" >&2
exit 2
else
CHAT_ID="${NOTIFY_CONTACTPAGER}"
fi
You can add a custom user attribute and use it in your script.
Go TO Setup > UsersCustom > user attributes
and create a custom attribute named TELEGRAMCHAT
, do not change the name, you can change the Title and Help Text.
Go To Setup > Events > Notification configuration>
and edit your notifcation. Add a custom macro.
This pattern will accept numbers with or without an optional minus sign and requires a minimum of 5 digits.:
Regex : ^-?\d{5,}$
- Breakdown:
^: Start of the string.
-?: An optional minus sign.
\d{5,}: Five or more consecutive digits.
$: End of the string.
The Macro checks for an at least 5 digit long number, if your Chatid differs, you can adjust that, this also ensures that only those with a chatid set up will get notified. (could work also as a whitelist)
Edit your user and enter your Group/Chat-ID
For more details and troubleshooting with parameters please check:
- Check_MK notification logfile:
tail -f /omd/sites/{sitename}/var/log/notify.log
- Check_MK Manual > Notifications > Chapter: 11.3. A simple example
- [Feature-Request] Multiple Alert Profiles
- Thank you for the excellent code optimization contributions and additional information ThomasKaiser.
- Best regards to Jonathan Barratt in Bangkok and many thanks for adding emojies to the module.
- Many thanks to progamernoob for the contributions and enhancements to custom user attributes and macros.
- Big thanks to Sebastian Hayer-Lutz for the idea with the symlinks and thereby supporting several plugins, as well as the timeout optimization.
checkmk-telegram-notify and all individual scripts are under the BSD 3-Clause license unless explicitly noted otherwise. Please refer to the LICENSE