Closed marcohald closed 4 months ago
Hey, i am not able to even create an index with a name like that in any version of elasticsearch. Can you provide details on how to reproduce this?
Face the same problem. I have index with "-%y-%m-%d" in name. Fluentd made this by misconfig a long ago and I have to deal with it. So I can push api requests with curl by "index-%25y-%25m-%25d" in url (substitute '%' by '%25'), but elasticvue cannot handle this index.
Fixed in 1.0.9
Description Indices like "filebeat-8.10.2-%{[customer]}-merged4-2024.99" could not be opened or deleted The Browser send a request like this when i click on the Index in the Indices tab
http://localhost:9200/filebeat-8.10.2-%%7B[customer]%7D-merged4-2024.99/_search
Elasticsearch answers with a 404 and thisreason : "no such index [filebeat-8.10.2-%7B[customer]}-merged4-2024.99]"
The Problem seems to be the % is not encoded but elasticsearch seems to need that to be encoded When I manually request it like thathttp://localhost:9200/filebeat-8.10.2-%25%7B[customer]%7D-merged4-2024.99/_search
it worksSteps To Reproduce List the steps to reproduce your problem:
Environment (please include the following information):