Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make our customised dashboard as default dashboard on kibana

I have modified my dashboard and tried saving it as home and I get the below message

Home Set This page has been set as your default Kibana dashboard

Still I am not able to load the modified dashboard as default dashboard, please suggest me on how to do it.

like image 788
Narendra522 Avatar asked Mar 18 '15 04:03

Narendra522


People also ask

How do I customize my Kibana dashboard?

You can build your dashboard by adding visualizations. By default, Kibana dashboards use a light color theme. To use a dark color theme, click on the “Settings” button and check the “Use Dark Theme” box. To add a visualization to the dashboard, click the “Add Visualization” button in the toolbar panel.

How do I bring up the dashboard in Kibana?

To open the dashboards, launch the Kibana web interface by pointing your browser to port 5601. For example, http://localhost:5601. Replace localhost with the name of the Kibana host. If you're using an Elastic Cloud instance, log in to your cloud account, then navigate to the Kibana endpoint in your deployment.

Where is Kibana dashboard stored?

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.


1 Answers

For Kibana 4. Create dashboard with name "Default".

Change default_app_id in kibana/config/kibana.yml.

# The default application to load.
default_app_id: "dashboard/Default"

And then restart kibana to apply changes

service kibana restart
like image 122
Roman Fedorov Avatar answered Nov 15 '22 17:11

Roman Fedorov