Describe the issue: We have Opensearch configured by the organisation in which I see that the index in the logs is always named with a timestamp, something like <index-name>-2025.09.03-005174 and is mapped to the field _index in logs. There are multiple such indexes that get created, not sure of the algorithm on how its created but our logs are scattered across different such indexes.
To do a query in Dev Tool we do an api call to the index pattern of GET <index-name>*/_search.
But when trying to do a query using SQL it shows a Bad Request. I am trying something like: select <field_name> from <index_name> but if I try with select <field-name> from <index-name>-2025.09.03-005174 I get a success response with the right table.
Is there any way to do a search using the * in index name