Sha256: 607b13fee88b0183e53cf3e54b3e206fa22e83d26cb8214ffe4d7822fdb61cab

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

# Fluent::Plugin::KibanaServer

Fluent plugin to serve [Kibana](https://github.com/elasticsearch/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 /Users/okuno/tmp/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

pathches 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-kibana-server-0.0.1 README.md