Hi,
I have a data set containing containing objects in the following format:
{
"id": 123,
"displayName": "foo"
}
I would like to use this to populate an option list. It is important that the user only sees the displayName in the option lists but when a value is selected the filter value is the id field.
Furthermore I'd need to use this filter on data with the following structure:
{
"metadata": {
"relationId": 123
},
"other fields": "bar"
}
Where the filter should be applied to the nested property "relationId". Is this possible in kibana dashboards and if so, how?