2014-05-15 06:36:05 -04:00
|
|
|
[[java-aggs-metrics-stats]]
|
|
|
|
==== Stats Aggregation
|
|
|
|
|
|
|
|
Here is how you can use
|
|
|
|
{ref}/search-aggregations-metrics-stats-aggregation.html[Stats Aggregation]
|
|
|
|
with Java API.
|
|
|
|
|
|
|
|
|
|
|
|
===== Prepare aggregation request
|
|
|
|
|
|
|
|
Here is an example on how to create the aggregation request:
|
|
|
|
|
|
|
|
[source,java]
|
|
|
|
--------------------------------------------------
|
2016-11-28 11:33:40 -05:00
|
|
|
StatsAggregationBuilder aggregation =
|
2014-05-15 06:36:05 -04:00
|
|
|
AggregationBuilders
|
|
|
|
.stats("agg")
|
|
|
|
.field("height");
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
===== Use aggregation response
|
|
|
|
|
|
|
|
Import Aggregation definition classes:
|
|
|
|
|
|
|
|
[source,java]
|
|
|
|
--------------------------------------------------
|
|
|
|
import org.elasticsearch.search.aggregations.metrics.stats.Stats;
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
[source,java]
|
|
|
|
--------------------------------------------------
|
|
|
|
// sr is here your SearchResponse object
|
|
|
|
Stats agg = sr.getAggregations().get("agg");
|
|
|
|
double min = agg.getMin();
|
|
|
|
double max = agg.getMax();
|
|
|
|
double avg = agg.getAvg();
|
|
|
|
double sum = agg.getSum();
|
|
|
|
long count = agg.getCount();
|
|
|
|
--------------------------------------------------
|
|
|
|
|