Hi there,
Thanks for being on this topic. I hope it will help others
Here is what I'm trying to achieve:
The data source of my data is from elasticsearch and the data format is like that:
[timestamp: data, metric11:number, metric12: number, metric21:number, metric22: number]
metric11 and metric12 are associated: value11(0) is asociated with value12(0)
Same for metric21 and metric22
I'd like to create a table like that, showing only the latest value (last timestamp) and refreshing everytime it updates
metric11 (sorted) | metric 12 || metric 21 (sorted) | metric22
value11(0) | value12(0)|| value21(0) | value22(0)
value11(1) | value12(1)|| value21(1) | value22(1)
value11(2) | value12(2)|| value21(2) | value22(2)
I'm really struggle to understand how I can do that.
Have you already done something similar ? Any idea ?
thx vm for reading and for your help