how to remove index from elasticsearch code example
Example 1: delete index elasticsearch
curl -X DELETE 'http://localhost:9200/_all'
Example 2: elasticsearch delete index
DELETE /my-index-000001
Example 3: elastic drop index
curl -X DELETE "localhost:9200/my-index-000001?pretty"