No commit activity in last 3 years
No release in over 3 years
Fluentd plugin which serves Kibana within fluentd process
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

Fluent::Plugin::KibanaServer, a plugin for Fluentd

Fluent plugin to serve Kibana

Installation

$ fluent-gem install fluent-plugin-kibana-server

Configuration

Example

<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

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.

TODO

  • Removing indexes periodically

patches welcome!

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request