Home > Net >  what is the better way to create a lifecycle index managed by app not Elasticsearch?
what is the better way to create a lifecycle index managed by app not Elasticsearch?

Time:01-12

I am using Elasticsearch 7.15 and Kibana for searching text. The way I am creating index is daily index. Every time my application tries to save data to Elasticsearch, it will creates an index with date as the suffix: logs-2022-01-10.

I need to create an index lifecycle to delete the index which is older than 30 days. I have come cross some tutorial like: enter image description here

CodePudding user response:

the only way to do this would be to use Elasticsearch Curator, which is an older generation tool, or to DIY

  •  Tags:  
  • Related