Are you just asking how to make a link that goes to a different dashboard?
You can make a Markdown visualization that has links to all your dashboard. Just put that visualization on all your dashboards, then you can navigate to each one.
Thanks Sullivan , certainly I will use your ideia for other projects, but not in this case .
Everytime that I create a dashboard I can only have access it from kibana -> dashboar and then access the choosen dashboard.
I developt a panel and inside this panel I would like to redirect to the correct dashboard. As an example I have done a dash to firewall, another to squid and so on but I can't redirect because when I create a dash it uses a numeric number instead the dash name that I would like.
The Beats saved objects are created using scripts that defined the saved object in code and index them into the .kibana index. In Elasticsearch, you can index a document without specifying the ID and it'll autogenerate it for you (Kibana takes advantage of this for its saved objects), or you can specify your own ID, which is what Beats did.
So the "title" you're seeing is still in the URL is still just the _id.
If you're comfortable defining your own dashboard data in a script and indexing that into Elasticsearch directly, you can feel free to, but you should be aware there is no public API for it and the contract could break without warning over an upgrade.That seems like a big price to pay just to have a human-readable dashboard ID, yet I know of folks outside the company that do it.
If you change the ID of a visualization, it will break your dashboard. But if you change the ID of the visualization and also change where the visualization ID is referenced in the string of data in the dashboard's panelsJSON field, that would keep the reference intact.
So if you need to change your visualization ID, do so using a search-and-replace of that ID over the whole export.json file for the string you want.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.