Skip to content

Instantly share code, notes, and snippets.

@kajoik
Created November 1, 2013 15:31
Show Gist options
  • Save kajoik/7267176 to your computer and use it in GitHub Desktop.
Save kajoik/7267176 to your computer and use it in GitHub Desktop.
Pushover alert script for Zabbix
#!/bin/bash
### USAGE
# Enter {user_token}@{api_token} as the recipient of the user media type configuration ("Send to")
###
USER=$(echo $1 | cut -f1 -d@)
APPLICATION=$(echo $1 | cut -f2 -d@)
EVENT=$2
NOTIFICATION=$3
HEADER=$(echo $EVENT | awk -F: '{print $1}')
PRIORITY=0 # Pushover default; -1 ignores quiet hours
case "$HEADER" in
"Info"|"Information" ) PRIORITY=0 ;;
"Warning"|"WARNING" ) PRIORITY=0 ;;
"Problem"|"PROBLEM"|"Average"|"AVERAGE" ) PRIORITY=0 ;;
"High"|"HIGH" ) PRIORITY=1 ;;
"Disaster"|"DISASTER"|"Emergency"|"EMERGENCY" ) PRIORITY=1 ;;
"Recovery"|"RECOVERY" ) exit 0 ;;
esac
curl -s -F "user=${USER}" -F "token=${APPLICATION}" -F "message=${NOTIFICATION}" -F "priority=${PRIORITY}" --retry 400 --retry-delay 5 https://api.pushover.net/1/messages.json
@lrfsh
Copy link

lrfsh commented Feb 22, 2018

Also you need to add three parameters to the Media Type manually:
{ALERT.SENDTO}
{ALERT.SUBJECT}
{ALERT.MESSAGE}

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment