How can I filter the result I get from the query:
GET /_cat/indices?h=h,s,i,id,p,r,dc,dd,ss,creation.date.string
to all indexes from specific creation.date.
Thanks
Yael
How can I filter the result I get from the query:
GET /_cat/indices?h=h,s,i,id,p,r,dc,dd,ss,creation.date.string
to all indexes from specific creation.date.
Thanks
Yael
You cannot use the creation.date
in your query.
Please read - Searching Indexes based on Index Creation date
Alternatively, you can sort. and then copy&paste to a spreadsheet for example.
GET /_cat/indices?h=h,s,i,id,p,r,dc,dd,ss,creation.date.string&s=creation.date.string:desc
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
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.