Fluent::Plugin::KibanaServer, a plugin for Fluentd
Fluent plugin to serve Kibana
$ fluent-gem install fluent-plugin-kibana-server
<source>
type kibana_server
bind 0.0.0.0
port 24300
mount /kibana/
access_log_path /var/log/kibana/access.log
elasticsearch_url http://localhost:9200
</source>
parameter | description | default |
---|---|---|
bind | Local address for the server to bind to | 0.0.0.0 |
port | Port to listen on | 24300 |
mount | Root path of Kibana | / |
access_log_path | Path to access log. No logs will be written if this parameter is ommited. | |
elasticsearch_url | URL of elasticsearch. This parameter is used in config.js of Kibana. |
- Removing indexes periodically
patches welcome!
- 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