ElasticSearch: how to delete index containing %-character?

Percent signs are URL encoded as %25 so try this:

curl -XDELETE http://localhost:9200/miplog-%25{env}-2015.08.19
4 Likes