Skip to content

Commit

Permalink
[DOCS] Fix HDR parameter for the percentile agg (#98318) (#98323)
Browse files Browse the repository at this point in the history
  • Loading branch information
abdonpijpelink authored Aug 9, 2023
1 parent 577183e commit 69e92fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ GET latency/_search
This option can lead to improved accuracy (relative error close to 0.01% for millions of samples in some
cases) but then percentile queries take 2x-10x longer to complete.

==== HDR Histogram
==== HDR histogram

https://github.com/HdrHistogram/HdrHistogram[HDR Histogram] (High Dynamic Range Histogram) is an alternative implementation
that can be useful when calculating percentiles for latency measurements as it can be faster than the t-digest implementation
Expand All @@ -361,7 +361,7 @@ as a number of significant digits). This means that if data is recorded with val
(3,600,000,000 microseconds) in a histogram set to 3 significant digits, it will maintain a value resolution of 1 microsecond
for values up to 1 millisecond and 3.6 seconds (or better) for the maximum tracked value (1 hour).

The HDR Histogram can be used by specifying the `method` parameter in the request:
The HDR Histogram can be used by specifying the `hdr` parameter in the request:

[source,console]
--------------------------------------------------
Expand Down

0 comments on commit 69e92fc

Please sign in to comment.