Fluent::Plugin::CrateDB, a plugin for Fluentd
fluent-plugin-cratedb is a buffered output plugin for fluentd and CrateDB.
$ fluent-gem install fluent-plugin-cratedb
type
createdb
Options:
host
: cratedb host (default: 127.0.0.1)
port
: cratedb port (default: 4200)
hosts
: an array of servers including ports [127.0.0.1:4200, 10.0.0.1:4201]
table
: bulk insert table (require)
column_names
: bulk insert column (require)
key_names
: key name values (default column_names
)
<match mylog.*>
@type cratedb
host localhost
port 4200
column_names id,user_name,created_at,updated_at
table users
flush_interval 10s
</match>
- 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
This package was distributed under Apache-2.0 licence, see LICENCE file for details.