@@ -1871,7 +1871,7 @@ The number of samples recorded by the histogram.
18711871### ` histogram.ccdf(value) `
18721872
18731873<!-- YAML
1874- added: REPLACEME
1874+ added: v24.21.0
18751875-->
18761876
18771877* ` value ` {number} The value to query.
@@ -1884,7 +1884,7 @@ will exceed `value`. Equivalent to `1 - histogram.cdf(value)`.
18841884### ` histogram.cdf(value) `
18851885
18861886<!-- YAML
1887- added: REPLACEME
1887+ added: v24.21.0
18881888-->
18891889
18901890* ` value ` {number} The value to query.
@@ -1898,7 +1898,7 @@ than or equal to `value`. This is the inverse operation of
18981898### ` histogram.cliffsD(other) `
18991899
19001900<!-- YAML
1901- added: REPLACEME
1901+ added: v24.21.0
19021902-->
19031903
19041904* ` other ` {Histogram} The histogram to compare against.
@@ -1913,7 +1913,7 @@ opposite; 0 means no tendency in either direction.
19131913### ` histogram.cohensD(other) `
19141914
19151915<!-- YAML
1916- added: REPLACEME
1916+ added: v24.21.0
19171917-->
19181918
19191919* ` other ` {Histogram} The histogram to compare against.
@@ -1928,7 +1928,7 @@ Both histograms must have at least 2 recorded values; otherwise returns 0.
19281928### ` histogram.countAt(value) `
19291929
19301930<!-- YAML
1931- added: REPLACEME
1931+ added: v24.21.0
19321932-->
19331933
19341934* ` value ` {number} The value to query.
@@ -1964,7 +1964,7 @@ loop delay threshold.
19641964### ` histogram.ewmaMean `
19651965
19661966<!-- YAML
1967- added: REPLACEME
1967+ added: v24.21.0
19681968-->
19691969
19701970* Type: {number}
@@ -1976,7 +1976,7 @@ Returns `0` when EWMA is disabled or no values have been recorded.
19761976### ` histogram.ewmaStddev `
19771977
19781978<!-- YAML
1979- added: REPLACEME
1979+ added: v24.21.0
19801980-->
19811981
19821982* Type: {number}
@@ -1988,7 +1988,7 @@ when EWMA is disabled or no values have been recorded.
19881988### ` histogram.ewmaErrorRate `
19891989
19901990<!-- YAML
1991- added: REPLACEME
1991+ added: v24.21.0
19921992-->
19931993
19941994* Type: {number}
@@ -2001,7 +2001,7 @@ recorded.
20012001### ` histogram.burnRate(sloTarget) `
20022002
20032003<!-- YAML
2004- added: REPLACEME
2004+ added: v24.21.0
20052005-->
20062006
20072007* ` sloTarget ` {number} The SLO target as a fraction between 0 and 1
@@ -2032,7 +2032,7 @@ if (rate > 1) {
20322032### ` histogram.ksTest(other) `
20332033
20342034<!-- YAML
2035- added: REPLACEME
2035+ added: v24.21.0
20362036-->
20372037
20382038* ` other ` {Histogram} The histogram to compare against.
@@ -2046,7 +2046,7 @@ detecting performance regressions by comparing before/after histograms.
20462046### ` histogram.kurtosis `
20472047
20482048<!-- YAML
2049- added: REPLACEME
2049+ added: v24.21.0
20502050-->
20512051
20522052* Type: {number}
@@ -2059,7 +2059,7 @@ lighter tails.
20592059### ` histogram.linearBuckets(stepSize) `
20602060
20612061<!-- YAML
2062- added: REPLACEME
2062+ added: v24.21.0
20632063-->
20642064
20652065* ` stepSize ` {number} The width of each linear bucket.
@@ -2071,7 +2071,7 @@ of `stepSize`. Useful for visualization and export.
20712071### ` histogram.logBuckets(firstBucket, base) `
20722072
20732073<!-- YAML
2074- added: REPLACEME
2074+ added: v24.21.0
20752075-->
20762076
20772077* ` firstBucket ` {number} The value of the first bucket boundary.
@@ -2085,7 +2085,7 @@ Useful for visualization and export.
20852085### ` histogram.mannWhitneyTest(other) `
20862086
20872087<!-- YAML
2088- added: REPLACEME
2088+ added: v24.21.0
20892089-->
20902090
20912091* ` other ` {Histogram} The histogram to compare against.
@@ -2181,7 +2181,7 @@ Returns the value at the given percentile.
21812181### ` histogram.percentileCI(percentile[, options]) `
21822182
21832183<!-- YAML
2184- added: REPLACEME
2184+ added: v24.21.0
21852185-->
21862186
21872187* ` percentile ` {number} A percentile value in the range (0, 100] .
@@ -2237,7 +2237,7 @@ Returns a `Map` object detailing the accumulated percentile distribution.
22372237### ` histogram.percentilesAt(percentiles) `
22382238
22392239<!-- YAML
2240- added: REPLACEME
2240+ added: v24.21.0
22412241-->
22422242
22432243* ` percentiles ` {number\[ ] } An array of percentile values in the range (0, 100] .
@@ -2259,7 +2259,7 @@ Resets the collected histogram data.
22592259### ` histogram.skewness `
22602260
22612261<!-- YAML
2262- added: REPLACEME
2262+ added: v24.21.0
22632263-->
22642264
22652265* Type: {number}
@@ -2282,7 +2282,7 @@ The standard deviation of the recorded event loop delays.
22822282### ` histogram.welchTest(other[, options]) `
22832283
22842284<!-- YAML
2285- added: REPLACEME
2285+ added: v24.21.0
22862286-->
22872287
22882288* ` other ` {Histogram} The histogram to compare against.
@@ -2398,7 +2398,7 @@ previous call to `recordDelta()` and records that amount in the histogram.
23982398### ` histogram.recordCorrected(val, expectedInterval) `
23992399
24002400<!-- YAML
2401- added: REPLACEME
2401+ added: v24.21.0
24022402-->
24032403
24042404* ` val ` {number|bigint} The value to record.
@@ -2413,7 +2413,7 @@ latency.
24132413### ` histogram.subtract(other) `
24142414
24152415<!-- YAML
2416- added: REPLACEME
2416+ added: v24.21.0
24172417-->
24182418
24192419* ` other ` {RecordableHistogram}
0 commit comments