项目作者: ixmatus

项目描述 :
A CLI tool for piping from stdin to a redis pub/sub channel.
高级语言: Haskell
项目地址: git://github.com/ixmatus/pub.git
创建时间: 2014-08-05T17:38:20Z
项目社区:https://github.com/ixmatus/pub

开源协议:BSD 3-Clause "New" or "Revised" License

下载


Welcome!

Hackage: Pub
Build Status: Pub

The pub utility publishes input from stdin to a redis channel and the sub
utility consumes from a redis channel, writing to stdout.

Quickstart

Publishing to Redis from stdin is easy with the pub utility:

  1. $ pub --help
  2. Pipe stdin to a redis pub/sub channel
  3. Usage: pub --channel TEXT [--host STRING] [--port INTEGER] [--db INTEGER]
  4. [--version]
  5. Available options:
  6. -h,--help Show this help text
  7. --channel TEXT Redis channel to publish to
  8. --host STRING Redis host (default: localhost)
  9. --port INTEGER Redis post (default: 6379)
  10. --db INTEGER Redis db (default: 0)
  11. $ journalctl -f nginx.service | pub --channel "nginx-loglines"

and subscribing to Redis channels and piping to stdout is also easy with the
sub utility:

  1. $ sub --help
  2. Subscribe to redis channels and pipe to stdout
  3. Usage: sub [--channel TEXT]... [--host STRING] [--port INTEGER] [--db INTEGER]
  4. [--version]
  5. Available options:
  6. -h,--help Show this help text
  7. --channel TEXT... Redis channel(s) to subscribe to
  8. --host STRING Redis host (default: localhost)
  9. --port INTEGER Redis post (default: 6379)
  10. --db INTEGER Redis db (default: 0)
  11. $ sub --channel "nginx-loglines" --channel "haproxy-loglines" # This subscribes to both redis channels

Building

You can build multiple ways:

  • stack build
  • cabal build
  • nix-build --not-out-link -A pub release.nix
  • nix-shell -A pub.env release.nix