i realized that there are the visualize ids instead of name of the visualize in the urls. i use kibana 5.2.0
where can i find the map of visualize name which is defined by myself and visualize id?
They are stored in elasticsearch, so you can use a query to find them:
GET .kibana/visualization/_search?_source_include=title
{
"query": {
"match": {
"title": {title}
}
}
}
it works,thanks!
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.