Is it possible to search elasticsearch to list indices that startswith a particular string (not using the wildcard *)?

Currently to list all the indices matching a particular pattern, we use the wild card search using * to match all the characters like

curl http://10.171.203.21:9200/someString-*/address/_search

to match all indices starting with 'someString-'

Is there any alternative to do this without the * character ?

Hi,

yes, you can refer to multiple indices in different ways.

Daniel

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.