What am I missing? Why can't I access an alias index by name from Kibana?
I currently am using ES/K 7.6.2
I have been working with ES/K since 2014 --- used alias indices all the time. What has changed in 7.x that I am not understanding?
I have a index - my_main_index (ex. 20 records ingested).
I created an alias with a filter on my_main_index, called my_alias_index.
From Dev Tools:
-
If I query on my_alias_index, the set of 10 records is returned, which is what I expect.
GET my_alias_index/_search { "query": { "match_all": {} } } -
If I _cat the alias index, the result shows the name my_main_index and the number of records as 20 - not what I expected.
GET _cat/indices/my_alias_index
From Management -> Index Patterns:
- If I try to "Create index pattern", I do not have access to the alias index name - only the main index name. So now I can't bring my_alias_index into Kibana and use it in Discover/Visualize, etc.