A lightweight log shipper for logstash written in Ruby.
Inspired by beaver and logstash itself. Fair warning, it's a work in progress ;)
Install as a gem:
$ gem install woodchuck
And then execute:
$ woodchuck
woodchuck --files /var/log/syslog,/var/log/apache/**/*,/var/log/nginx/*.log --output redis
* -h, --help - Help!
* -l, --log-level - Log verbosity. [ debug, warn, info, error, fatal ]
* -p, --paths - A comma-separated list of files to watch for changes (file globbing is accepted).
* -o, --output - The output to send to [ stdout, redis ]
- Handy config format for multiple files and outputs
- regular expressions (why not!)
- ZeroMQ and TCP output support
- Performance enhancements
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request