I'm using kibana 6.2 and because of the problem that arrays are not well supported, i changed my json like that:
{"array1" : [
{
"array2" : [
{"name": "abc"},{"name": "def"}
]
}
]
}
{"array1" :
"0" :
{
"array2" :
"0": {"name": "abc"},
"1": {"name": "def"}
}
}
On my dashboard i'm trying to create a pie chart that splits into count of names, but when using terms i can't write on "field": array1.*.array2.*.name
I tried to use json input but with no success, and the field i want is zapReport.site.*.alerts.*.keyword
Another question is, which version arrays are well suported?
Someone can help me please?