https://github.com/bhuga/growl-amqp
Growl messages from AMQP. Grr, grr!
https://github.com/bhuga/growl-amqp
Last synced: about 1 month ago
JSON representation
Growl messages from AMQP. Grr, grr!
- Host: GitHub
- URL: https://github.com/bhuga/growl-amqp
- Owner: bhuga
- License: other
- Created: 2009-12-20T00:22:47.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2009-12-20T16:34:19.000Z (over 15 years ago)
- Last Synced: 2025-03-24T15:47:32.130Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 89.8 KB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GrowlAMQP
Display AMQP messages in growl.
The built in binary, 'growlamqp', will run out-of-the-box to report
messages with non-binary data. It looks like this:### growlamqp example
$ growlamqp -e amq.direct -k my.key.name
$If your data requires post-processing, or you only want to see some data,
write a wrapper script. Return whatever you want and growl will print it.
Return nil and it won't print it.### queuemon
# queuemon
#!/usr/bin/env ruby
require 'growlamqp'
require 'bert'GrowlAMQP.monitor! do | msg |
BERT.decode(msg)
endThe file 'queuemon' is now a workable executable,
complete with config files, command line options,
and more. Enjoy.