Noam Segev
Noam Segev

Reputation: 415

Elasticsearch multiple indexes search via URI example needed

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

Answers (1)

thaveethu gce
thaveethu gce

Reputation: 625

curl -X GET "hostname:9200/index_name_*/_search"

or http://hostname:9200/index_name_*/_search

Upvotes: 1

Related Questions