For DDEV v1.23.5 or above run
ddev add-on get janopl/ddev-kibana
For earlier versions of DDEV run
ddev get janopl/ddev-kibana
From within the container, the kibana container is reached at hostname "kibana", port: 5601
To adjust the version of your elastic search, you can use the new argument variable that docker compose provides for the version.
docker-compose.kibana.yml
services:
kibana:
build:
...
args:
- KIBANA_VERSION=7.17.14 // example: 8.10.2
...
environment:
KIBANA_VERSION: 7.17.14 // example: 8.10.2
OR
After adding the add-on, run cp .ddev/elasticsearch/docker-compose.elasticsearch8.yaml .ddev/
to enable Kibana 8.
You can configure Kibana dashboard through the config file under: .ddev/kibana/config.yml
You can access the Kibana server directly from the host by visiting:
https://<projectname>.ddev.site:5601
http://<projectname>.ddev.site:5600
First off, thanks for taking the time to contribute! Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.
Please read our contribution guidelines, and thank you for being involved!
This project is licensed under the APACHE license.
See LICENSE for more information.