Skip to content

Instantly share code, notes, and snippets.

@x1024
Created July 8, 2016 16:00
Show Gist options
  • Save x1024/96f304f64f18f41b9224cdf1a5a5eebb to your computer and use it in GitHub Desktop.
Save x1024/96f304f64f18f41b9224cdf1a5a5eebb to your computer and use it in GitHub Desktop.
slack notifications when a line is added to a logfiel
#!/usr/bin/env python2.7
from slacker import Slacker # https://github.com/os/slacker
slack = Slacker('SLACK API TOKEN HERE')
while True:
line = raw_input()
msg = 'A line was posted: %s' % line
print msg
slack.chat.post_message('@slackbot', msg)
tail -n 0 -f file.txt | ./notifier.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment