October 2019
Beginner
186 pages
5h 39m
English
This metric aggregation computes the percentiles over numeric values. In the following example, the percentile is computed in relation to load time, where the load_time field is a numeric field:
GET latency/_search{ "size": 0, "aggs": { "load_time_outlier": { "percentiles": { "field": "load_time" } } }}
The keyed flag set to true will associate a unique string key with each bucket.
Read now
Unlock full access