How to visualize array? X:123...Y:raw values

such as this data : "array": [0,3,2,9]
I just want to plot a simple line chart, X is 1234, Y is 0329.
But I find it is very hard to do it with kibana.

Hi,

I'm afraid it is almost impossible to visualize the array values on the same document.
Basically, kibana use elasticsearch aggregation over documents (ex. terms, max, top_hits, etc.)
So firstly, you need to split the array values into documents if you need to visualize each value of the array.

#Vega might be able to realize your requirements, but I don't recomend it because of high complexity of its setting.

Thanks.

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