Reputation: 11118
After I update document it disappears from index alias. I guess there must be some filter on this alias. How can I get definition of index alias?
Upvotes: 1
Views: 98
Reputation: 2279
Use the index alias endpoint
To get a list of all aliases :
/_all/_alias
Or you can filter by indices and alias name (wildcards are accepted)
/{index}/_alias/{alias}
Upvotes: 2