How to delete specific filebeat indices

Hello everyone
I want to delete specific indices on filebeat
I have 2 questions

  1. What is the command to delete specific indices
  2. How can i see my indices
    thanks
1 Like

To list all indices, go to the Dev Tools console in Kibana and run:

GET /_cat/indices

To delete an index, use the DELETE INDEX API. For example:

DELETE filebeat-7.0.0-2019.04.02

Related docs:

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