Reputation: 794
I want to plot time on x axis and a numeric field 'f' occurring at that time on y axis in kibana 4. I have changed the data type of 'f' to integer and I can confirm that it has changed from kibana index settings.
However, the only aggregation options available for Y axis are count/min/max/sum etc. This post has an answer for plotting sum but I'm interested in plotting actual values. Is there a way to do this?
Upvotes: 5
Views: 8020
Reputation: 16362
Kibana is plotting a bucket, e.g. every minute.
As such, aggregations are in order. I frequently plot average and max on the same chart to give me a good overview.
If you reduce the time period, the buckets get smaller, but I don't think you can ever make them "just 1 document".
Upvotes: 1
Reputation: 3225
You probably want to check this.
tl;dr The data you want to plot, are not numbers.
%{NUMBER:time:float}
instead of whatever you have.Upvotes: 2