Skip to content

Commit 69e92fc

Browse files
[DOCS] Fix HDR parameter for the percentile agg (#98318) (#98323)
1 parent 577183e commit 69e92fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/aggregations/metrics/percentile-aggregation.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ GET latency/_search
352352
This option can lead to improved accuracy (relative error close to 0.01% for millions of samples in some
353353
cases) but then percentile queries take 2x-10x longer to complete.
354354

355-
==== HDR Histogram
355+
==== HDR histogram
356356

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

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

366366
[source,console]
367367
--------------------------------------------------

0 commit comments

Comments
 (0)