소스 검색

[DOCS] Fix HDR parameter for the percentile agg (#98318)

Abdon Pijpelink 2 년 전
부모
커밋
e009e40660
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      docs/reference/aggregations/metrics/percentile-aggregation.asciidoc

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

@@ -355,7 +355,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
@@ -364,7 +364,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]
 --------------------------------------------------