mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 14:05:27 +00:00
Buckets: -------- * terms * range * global * filter * filters * missing * nested * reverse nested * children * significant terms * date range * ip range * range * histogram * date histogram * geo distance * geo hash grid Metrics: -------- * min * max * sum * avg * stats * extended stats * value count * percentiles * percentile rank * cardinality * geo bounds * top hits * scripted metric
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
[[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]
|
|
--------------------------------------------------
|
|
MetricsAggregationBuilder aggregation =
|
|
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();
|
|
--------------------------------------------------
|
|
|