Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can i change top menu bar and remove some options in kibana-4

I have installed kibana-4 on my Linux machine. My requirement is that I want to delete options like save search fields in my kibana home page and i want to change the top menubar of kibana by my own customized menubar. here 's snapshot of what i want to do. enter image description here

like image 868
jay j Avatar asked Apr 13 '15 09:04

jay j


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 many default event fields are displayed by Kibana?

Discoveredit The number of surrounding entries to display in the context view. The default value is 5.

Where is settings in Kibana?

Advanced Settings control the behavior of Kibana. For example, you can change the format used to display dates, specify the default data view, and set the precision for displayed decimal values. Open the main menu, then click Stack Management > Advanced Settings. Scroll or search for the setting.


1 Answers

Kibana 4 is not well documented yet. You might need to dig into the code to understand how things work.

This being said, you may want to use 'embed=true|false' URL parameter to show or not the whole toolbar. This is useful when embeding kibana in iframe, so that parameters are injected from outside and users cannot change settings.

Example to display a dashboard named 'demo' with no toolbar:

http://<hostname>/#/dashboard/demo?embed=true&_g=(time:(from:now-90d,mode:quick,to:now),title:demo)

You may then create your own menus and drive the iframe that embeds Kibana.

Hope this helps.

like image 77
void Avatar answered Oct 12 '22 14:10

void