Hi,
I have these documents in ElasticSearch (single indexname)
|datetime|, |label|, |count|
2019-09-06 13:32:18,host1 service1,876
2019-09-06 13:32:18,host1 service1,353
2019-09-06 13:32:18,host2 service2,911
2019-09-06 13:32:18,host2 service2,55
My fields are "datetime", "label" and "count". How do I graph these 4 numbers as it is? I tried VisualBuilderTimeSeries but the aggregations "max" or "min" will basically drop the two values, and what i get are just 2 (points): 1 for host1 and one for host2. Is there a way to plot these in 1 line(X) and show all 4 numbers ?
thanks,
SirJune