Back to Elasticsearch

To Tdigest

docs/reference/query-languages/esql/kibana/docs/functions/to_tdigest.md

9.4.0362 B
Original Source

% This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it.

TO TDIGEST

Converts an untyped histogram to a TDigest, assuming the values are centroids.

esql
FROM histogram_standard_index
 | WHERE instance == "hand-rolled"
 | EVAL tdigest = to_tdigest(responseTime)
 | KEEP responseTime, tdigest
;