Added Kibana to the docker-compose stack

This commit is contained in:
2017-09-20 16:58:18 +02:00
parent 00eb6d8685
commit 2e2fc791e1
2 changed files with 26 additions and 0 deletions

View File

@@ -64,3 +64,14 @@ Blender Cloud expects the following files to exist:
- `/data/git/blender_cloud/config_local.py` with machine-local configuration overrides
- `/data/config/google_app.json` with Google Cloud Storage credentials.
## 7. ElasticSearch & kibana
Kibana should be placed in read-only mode:
`curl -XPUT 'localhost:9200/.kibana/_settings' -d '{ "index.blocks.read_only" : true }'`
If editing is desired, temporarily turn off read-only mode:
`curl -XPUT 'localhost:9200/.kibana/_settings' -d '{ "index.blocks.read_only" : false }'`