You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 this reason : "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 that http://localhost:9200/filebeat-8.10.2-%25%7B[customer]%7D-merged4-2024.99/_search it works
Steps To Reproduce
List the steps to reproduce your problem:
Create a index called "filebeat-8.10.2-%{[customer]}-merged4-2024.99"
Open elasticvue
Click on indices and then on the index named "filebeat-8.10.2-%{[customer]}-merged4-2024.99"
Environment (please include the following information):
Elasticsearch version: Opensearch 2.12.0
Operating system: Windows 10
Browser + version: Firefox 123.0.1
Elasticvue version: 1.0.4-stable
How are you running elasticvue? (docker, browser extension, web app): firefox extension
The text was updated successfully, but these errors were encountered:
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.
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 this
reason : "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 that
http://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):
The text was updated successfully, but these errors were encountered: