We have reports entries like below and Visualize statistics from "reports" in a Kibana table.
But to show customerId=1 makes no sense so want to show them by their name that are defined in another Index in this case.
Looking around and can't seem to find anything useful, closest i found was "static lookup" but that seem to be deprecated in latest versions and there you would have to manually enter key/values.
Index: reports
{"customerId" : 1,"type" : "view","country" : "FI"}
{"customerId" : 1,"type" : "click","country" : "FI"}
{"customerId" : 2,"type" : "view","country" : "DE"}
{"customerId" : 3,"type" : "view","country" : "DE"}
Index: customers
{"Id" : 1,"name" : "Customer_1"}
{"Id" : 2,"name" : "Customer_2"}