Fluent::Plugin::Hato, a plugin for Fluentd 
fluent-plugin-hato is a plugin for Fluentd to send messages via Hato.
<match notification.**>
type hato
api_key YOUR_API_KEY
scheme http
host hato.example.com
port 9699
message_keys foo, bar, baz
message_format [notification] %s %s %s
</match>
API key for your Hato installation.
Schema for your Hato installation.
Host for your Hato installation.
Port for your Hato installation.
Keys represented by comma-separated value for message.
Message format.
You can also use the params above inherited from Fluent::HandleTagNameMixin.
Add this line to your application's Gemfile:
gem 'fluent-plugin-hato'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fluent-plugin-hato
- 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