How to output the .kibana index all docs with curl? es 5.x

curl -XGET http://xxx.xxx:9200/.kibana/?????
i need see all the data in .kibana like with elasticsearch-head plugins output.

use search

curl -XGET http://xxx:9200/.kibana/_search?pretty -H 'Content-Type: application/json' -d'
{
  "query": { "match_all": {} }
}
'

Even easier:

curl -XGET http://xxx:9200/.kibana/_search?pretty

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