WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Percentiles aggregation
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Percentiles aggregation
editA multi-value metrics aggregation that calculates one or more percentiles over numeric values extracted from the aggregated documents.
Fluent DSL
editvar result = client.Search<ElasticsearchProject>(s => s
.Aggregations(a => a
.Percentiles("my_percentiles_agg", p => p
.Field(f => f.Followers.First().Age)
)
)
);
var agg = result.Aggs.Percentiles("my_percentiles_agg");
Object Initializer Syntax
editvar request = new SearchRequest
{
Aggregations = new Dictionary<string, IAggregationContainer>
{
{ "my_percentiles_agg", new AggregationContainer
{
Percentiles = new PercentilesAggregator
{
Field = "followers.age"
}
}
}
}
};
var result = client.Search<ElasticsearchProject>(request);
var agg = result.Aggs.Percentiles("my_percentiles_agg");
Refer to the original docs for more information.