Get min value with timestamp

Hello,

I'm quite new to kibana and elasticsearch and I'm currently at creating a dashboard. I have a series of numbers and I want to know the min value of a given period of time. But I need to know at which time the value was on it's min (through a metric). How can I display these informations in my dashboard?

Thanks in advance

But I need to know at which time the value was on it's min (through a metric)

This is not possible. Kibana visualizations display aggregation results from Elasticsearch. An aggregation groups documents into buckets and calculates metrics for each bucket. There is no way to pull out one document property and associate that to the computed metric value.

After further research, it is possible with top hits aggregation

Thanks that worked out very well

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.