Hello Experts,
Version : Splunk Enterprise 7.0.2
We have configured alerts from scheduled search which successfully sends alerts to slack.
Using "Slack Webhook Alert" with $result.fieldname$ .
Currently we have a problem of formatting the appearance of message in slack.
Please provide some documents or resources where the formatting in splunk can be done,so that the message looks good in slack.
Thank you.
Edit slack_webhook_alert.py
Replace the last line with :
try:
json_object = json.loads(slack_message)
requests.post(slack_webhook, data=slack_message)
except ValueError, e:
requests.post(slack_webhook, data=json.dumps({'text': slack_message}))
This will allow you to send the message as JSON