Is there a way to get all visualizations of ".kibana-6" index using curl

Our kibana index was reindexed and it had a name ".kibana-6"

Initially we used to get all visualizations via command
localhost:9200/.kibana/visualization/_search?pretty
But now the index is changed and the following command does not work
localhost:9200/.kibana-6/doc/_search?q=type:visualization&pretty

How can we now query to receive all visualizations from kibana-6 index

1 Like

Hello,
The best way to get them is to use Bulk Get import/export API for Kibana:
https://www.elastic.co/guide/en/kibana/master/saved-objects-api-bulk-get.html
You will query the Kibana endpoint instead of Elasticsearch.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.