Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

kibana running on docker: how to save dashboard?

Tags:

docker

kibana

I am running kibana 5.2.1 from docker. I am using this image: FROM docker.elastic.co/kibana/kibana:5.2.1

The problem is if I remove the container the work done on kibana will be lost. How can I save kibana dashboard on docker instance?

can I use docker volume? if yes which folder in the container store kibana data so I can map it to a local folder.

Thanks!

like image 986
sabrina2020 Avatar asked Mar 18 '17 11:03

sabrina2020


People also ask

Where are Kibana dashboards saved?

Yes, the Kibana dashboards are being saved in Elasticsearch under kibana-int index (by default, you can override that in the config. js file). If you want to move your Kibana dashboards to another ES cluster you have two options: Export manually the dashboards.

How do I publish my Kibana dashboard?

Share a direct link to a saved search, dashboard, or visualization. To access the shared object, authentication is required. Open the main menu, then open the saved search, dashboard, or visualization you want to share. From the toolbar, click Share, then select Permalinks.


1 Answers

Based on this question, it looks like it saves into elasticsearch, so you don't need to mount a shared volume.

Location of custom Kibana dashboards in ElasticSearch

like image 51
Adam J.R. Erickson Avatar answered Oct 06 '22 06:10

Adam J.R. Erickson