Alertscript for Zabbix to Slack February 23, 2016February 24, 2016 Eric Anderson Recently Slack has gained a lot of usage, requiring Operations teams to try and integrate Zabbix Alerting with their Slack Installation, here’s how to do so. You will need to get your Slack Post URL, fill that value in the following script. 1234567891011121314151617181920 #!/usr/bin/pythonimport requestsimport sysrequests.packages.urllib3.disable_warnings() slack_post_url = 'https://slack_post_url' def sendAlert(webhook_url, alert_msg):payload = alert_msgresponse = requests.post(webhook_url, json=payload)print payload sendAlert(slack_post_url,{"channel": "%s" % sys.argv[1],"username": "zabbix","text": "```Status: %s\n%s```" %(sys.argv[2], sys.argv[3]),}) Share:FacebookLinkedInRedditEmailTwitterPrint actions, alerts, notification, python, slack, zabbix Zabbix