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.
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.