Hello everyone,
I'm working with Elasticsearch, and for the moment and making a scatterplot plot by using the vega visualizations. The point is that after checking with the veta editor, I realised that the version of vega-lite with the last version of kibana is the v2.6.0, in which the command flatten or fold is seemed to be not available. How could i upgrade the version of my vega-lite to work with kibana?? I'm going to be extremely grateful if you can help me, or if you can suggest to me a different soluction to my problem.
I have data in elasticsearch following this structure:
TimeStamp max full consumed
2020-03-14 512 56 200
2020-03-15 512 120 300
2020-03-16 512 40 100
2020-03-16 512 45 200
2020-03-17 512 180 300
I'm searching to have a result to create a scatterplot with colors (with multiple lines in the same graph withou the use of layer) for the values of max, full, and consumed by having an output like this.
TimeStamp value key
2020-03-14 512 1
2020-03-14 16 2
2020-03-14 200 3
2020-03-15 512 1
2020-03-15 120 2
2020-03-15 300 3
2020-03-16 512 1
2020-03-16 40 2
2020-03-16 100 3
. . .
. . .
. . .
. . .
Thanks so much,