How to create a filter on 2 fields in an alias?
I am looking to create an alias of an index that would retrieve information according to one of 2 filters. One or the other, an "OR" in fact. For example: PUT .internal.alerts-security.alerts-jse-000001/_alias/.alerts-security.alerts-global-overview { "filter": { "terms": { "data_stream.namespace": [ "etu" ] } } } or PUT .internal.alerts-security.alerts-jse-000001/_alias/.alerts-security.alerts-global-overview { "filter": { "terms": { "agent.name": [ "ec6b600226d0",… Read More How to create a filter on 2 fields in an alias?