TODO: Write a gem description TODO: Also, I need to write tests
Add this line to your application's Gemfile:
gem 'fluent-plugin-kafka'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fluent-plugin-kafka
<source>
type kafka
host <broker host>
port <broker port: default=9092>
topics <listening topics(separate with comma',')>
format <input text type (text|json)>
add_prefix <tag prefix (Optional)>
add_suffix <tag suffix (Optional)>
</source>
<match *.**>
type kafka
brokers <broker1_host>:<broker1_ip>,<broker2_host>:<broker2_ip>,..
default_topic <output topic>
output_data_type (json|ltsv|attr:<record name>)
</match>
<match *.**>
type kafka_buffered
brokers <broker1_host>:<broker1_ip>,<broker2_host>:<broker2_ip>,..
default_topic <output topic>
flush_interval <flush interval (sec) :default => 60>
buffer_type (file|memory)
output_data_type (json|ltsv|attr:<record name>)
</match>
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request