Array of objects in Kibana

Let's use this mapping:

"foo" : {
           "type":"nested",
           "properties": {
               "fuzzy":{"type":"keyword"},
               "bar":{"type":"keyword"}
           }
        }

I've indexed my documents successfully. A sample:

{
  "foo": [{"fuzzy":"asdas","bar":["jasda","jasdkaj"]}]
}

But Kibana can't search or filter using those fields inside each item of the array. Is this a normal behavior or I'm missing something?

thanks!

I think this issue is what you are looking for? https://github.com/elastic/kibana/issues/3333 if not, feel free to ping back

Thanks
Rashmi

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.