summaryrefslogtreecommitdiffstats
path: root/tests/installer/slack.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/installer/slack.sh')
-rwxr-xr-xtests/installer/slack.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/installer/slack.sh b/tests/installer/slack.sh
new file mode 100755
index 0000000000..817989db92
--- /dev/null
+++ b/tests/installer/slack.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+#
+# Simple incoming webhook for slack integration.
+#
+# The script expects the following parameters to be defined by the upper layer:
+# SLACK_INCOMING_WEBHOOK_URL
+# SLACK_BOT_NAME
+# SLACK_CHANNEL
+#
+# Copyright:
+#
+# Author: Pavlos Emm. Katsoulakis <paul@netdata.cloud
+
+post_message() {
+ MESSAGE="$1"
+ curl -X POST --data-urlencode "payload={\"channel\": \"${SLACK_CHANNEL}\", \"username\": \"${SLACK_BOT_NAME}\", \"text\": \"${MESSAGE}\", \"icon_emoji\": \":space_invader:\"}" ${SLACK_INCOMING_WEBHOOK_URL}
+}