Hello!
I have a question regarding visualizing data by splitting it by a date field.
I have a handful of files that look like this:
{
"Name": "myName",
"RunID": 123,
"Value": 0.456,
"Time": "2017-10-12T08:00:00Z"
}
There are always two files with the same RunID and Name but different values and times (one is earlier than the other).
Is it possible to plot the values of the files in a histogram vs RunID but split the time series data by time stamp but still have a line be drawn using the correct association between values?
The later ones always run later and the earlier ones always run earlier.
At the moment when I try this I only get single dots in the graph because Kibana can't tell that the early document in RunID is associated with the early document with the subsequent RunID because obviously the timestamps are all uniqe.
Thanks,
g4lvanix