zabbix-to-gotify-alert
zabbix-to-gotify-alert copied to clipboard
Gotify Notifications for Zabbix monitoring system
Gotify Notifications for Zabbix
This GitHub repository contains a script for integrating Gotify to be able send notifications with Zabbix. Follow these instructions to set up and use the script with your Zabbix and Gotify instances.
Prerequisites
- Zabbix Server (version 5.0 or later recommended)
- Access to the Zabbix server with admin privileges
- A ready-to-use Gotify instance
Installation and Configuration
Step 1: Create an API Token in Gotify
Before setting up the script, you will need to create an application in Gotify to generate an API token.
-
Log into your Gotify server:
- Login to the Gotify UI via your web browser.
-
Create a new application:
- Navigate to the
Appssection; - Press on
Create App; - Enter the name for your application, for example
Zabbix Notifications; - Press
Create.
- Navigate to the
-
Copy the API Token:
- Once the application is created, you'll see an API Token.
- Copy this token as it will be used in the
gotify.shscript.
Step 2: Customize and Deploy the Script
-
Clone the repository or download
gotify.shfrom this repository. -
Edit
gotify.shto set up your Gotify server details:- Replace
http://change.mewith your Gotify server URL. For example,http://10.94.1.198orhttps://gotify.example.com.
- Replace
-
Copy the script to the Zabbix alertscripts directory, typically located at
/usr/lib/zabbix/alertscripts/.sudo cp gotify.sh /usr/lib/zabbix/alertscripts/ -
Make the script executable:
sudo chmod +x /usr/lib/zabbix/alertscripts/gotify.sh
Step 3: Configure Zabbix Media Type
-
Log into your Zabbix frontend.
-
Navigate to
Administration > Media Typesand clickCreate Media Type. -
Select
Scriptas the type and add a name, likeGotify. -
For the script name, enter
gotify.sh. -
Define the following parameters:
{ALERT.SENDTO}- Gotify API Token{ALERT.SUBJECT}- Notification subject{ALERT.MESSAGE}- Notification message{TRIGGER.SEVERITY}- Trigger severity (used to determine priority in Gotify)
-
Configure Message Templates:
- Navigate to the
Message templatestab. - Create templates for the different conditions under which notifications should be sent. Each template should specify the message format for the subject and body.
- Navigate to the
-
Save the new Media Type.
Step 4: Add Media to a Zabbix User
-
In Zabbix frontend, go to
Administration > Users. -
Edit the user who should receive Gotify notifications.
-
Under the
Mediatab, add the Gotify media type. -
In the
Send tofield, enter your Gotify API Token. -
Save the changes.
Step 5: Testing
Create a test trigger or wait for an actual alert to verify that notifications are being sent correctly to Gotify.
Note
- Ensure, that you have replaced
http://change.mein thegotify.shscript with your actual Gotify server URL. - The mapping between Zabbix severity levels and Gotify priorities can be adjusted within the script as per your requirements.