Skip to content
Frank Denis edited this page Sep 22, 2015 · 2 revisions

Flowgger can retrieve messages from a queue speaking the Redis protocol, such as Redis itself or Ardb:

[input]
type = "redis"
redis_connect = "127.0.0.1"
redis_queue_key = "logs"

This uses the Redis reliable queue pattern, moving messages to a temporary list whose key is <redis_queue_key>.tmp.<thread number>.

Optional properties:

  • redis_connect = "<ip>[:<port>]": IP and port of the Redis server to connect to.
  • redis_threads = <number>: the number of threads to use (defaults to 1).
Clone this wiki locally