Closed
Description
Hi,
With the indices
cat API, I can list my indices, either open or close.
→ curl http://127.0.0.1:9200/_cat/indices
close partner_results-20150930
yellow open partner_requests-20150929 1 1 17 0 230.3kb 230.3kb
yellow open partner_results-20151102 5 1 4311 0 1.5mb 1.5mb
yellow open search_requests-20150902 5 1 10 0 51.3kb 51.3kb
If I filter my results, I no longer see close indices :
→ curl http://127.0.0.1:9200/_cat/indices/\*_results-\*
yellow open partner_results-20151102 5 1 4311 0 1.5mb 1.5mb
I didn't find the documentation about that so I don't know if it a bug or an undocumented behavior.
I thought there might be an argument for /_cat/indices
to show all/open/close
indices, but I haven't found anything.