redis-to-fluentd-listener

This gem will help you to connect redis and fluentd. With it you'll be able to get your data from redis with fluentd.


License
0BSD
Install
gem install redis-to-fluentd-listener -v 1.0

Documentation

Fluent::Plugin::RedisListPoller

This gem will help you to connect redis and fluentd. With it you'll be able to get your data from redis with fluentd.

Requirements

  • Fluentd v0.14+

Installation

gem install redis-list-source-fluentd

Configuration Options

<source>
  @type       redis_listener
  host        127.0.0.1
  port        6379
  password    nil
  db          0
  timeout     5.0
  driver      ruby

  key         redis_list_item
  command     lpop
  batch_size  100

  tag         redis.data

  poll_interval      0.01
  sleep_interval     5
  retry_interval    5

  <parse>
    @type json
  </parse>
</source>