Monasca Kibana plugin for Keystone authentication
Go to file
Johannes Grassler 6f447e4e83 Use GET for Keystone health check
Some WSGI implementations may not support HEAD, resulting in a
false negative for the health check. GET will give an accurate
result in these cases.

Change-Id: I0fa0ecbeac64525d9108bfa618ac1afa7dcaa2a3
Depends-On: I22686d05670fc6c947611f8044dea498239a4212
2017-05-02 10:55:39 +02:00
server Use GET for Keystone health check 2017-05-02 10:55:39 +02:00
.babelrc Initial commit 2016-02-23 11:05:03 +01:00
.eslintrc Initial commit 2016-02-23 11:05:03 +01:00
.gitignore Initial commit 2016-02-23 11:05:03 +01:00
.gitreview Add .gitreview 2017-02-08 20:39:39 +01:00
.jshintrc Revert "Revert "Add Multi-Tenancy for keystone plugin"" 2017-01-04 11:09:59 +01:00
LICENSE Initial commit 2016-02-23 11:05:03 +01:00
README.md Rename the package to monasca-kibana-plugin 2017-02-10 08:48:36 +01:00
gulpfile.js Initial commit 2016-02-23 11:05:03 +01:00
index.js Adjusting to uwsgi deployed keystone 2017-04-28 07:58:57 +00:00
package.json Adjusting to uwsgi deployed keystone 2017-04-28 07:58:57 +00:00

README.md

Monasca Kibana plugin

Keystone authentication support and multi-tenancy for Kibana 4.6.x

Build

npm install
npm run package

Installation

Requires a working version of Kibana. The kibana configuration file (/opt/kibana/config/kibana.yml) should be updated where keystone_port should be the keystone admin port (default: 35357) not the keystone member port (default: 5000):

monasca-kibana-plugin.port: ${keystone_port}
monasca-kibana-plugin.url: http://${keystone_host}
monasca-kibana-plugin.enabled: True
monasca-kibana-plugin.defaultTimeField: '@timestamp'

Then install using the Kibana plugin manager tool:

$ /opt/kibana/bin/kibana plugin --install monasca-kibana-plugin --url file:///tmp/monasca-kibana-plugin-0.0.1.tar.gz
Installing monasca-kibana-plugin
Attempting to transfer from file:///tmp/monasca-kibana-plugin-0.0.1.tar.gz
Transferring 7567007 bytes....................
Transfer complete
Extracting plugin archive
Extraction complete
Optimizing and caching browser bundles...
Plugin installation complete

$ /opt/kibana/bin/kibana plugin --list
monasca-kibana-plugin

Now start/restart your Kibana server by running:

$ service kibana restart