From a JSON obtain the following structure of a data-table in Kibana

Hi, how are you?
I have a problem in a visualization in kibana, I don't know if it is possible from a JSON like this:

[
{
field1: "row1Columna1",
field2: "row1Columna2",
listas: [
{
valor: "r1text1"
}, {
valor: "r1text2"
},
{
valor: "r1valor"
}
]
},
{
field1: "row2Columna1",
field2: "row2Columna2",
listas: [
{
valor: "r2text1"
}, {
valor: "r2text2"
},
{
valor: "r2valor"
}
]
}
]
get a table like this:

image

or how could I pivot an array?

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