-
-
Save gemmadlou/d1cd0bcf11400e15c823dbfd5c5aa2ab to your computer and use it in GitHub Desktop.
Stream any log file to Slack using curl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| tail -n0 -F "$1" | while read LINE; do | |
| (echo "$LINE" | grep -e "$3") && curl -X POST --silent --data-urlencode \ | |
| "payload={\"text\": \"$(echo $LINE | sed "s/\"/'/g")\"}" "$2"; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment