Reputation: 415
I need and example request for URI search in elasticsearch for multiple indexes using a wildcard
in sense: GET index_name_*/_search => translates to in http
Upvotes: 0
Views: 75
Reputation: 625
curl -X GET "hostname:9200/index_name_*/_search"
or http://hostname:9200/index_name_*/_search
Upvotes: 1