Hi,
Since nested array is not well supported in Kibana, is there any way I could extract the value from the array using scripted field?
My data looks like this
1st document:
"page_name": [
{
"name": "New York"
},
{
"url": "https://newyork.com"
},
]
2nd document:
"page_name": [
{
"name": "Berlin"
},
{
"url": "https://berlin.de"
},
]
It'd be great if I could use the Tag Cloud and visualize page_name.name
However, it seems not yet supported, so I figured may be I should use scripted field.
What is the script that allows me to access my field page_name.name?