@@ -815,10 +815,11 @@ added: v15.9.0
815
815
-->
816
816
817
817
* ` options ` {Object}
818
- * ` min ` {number|bigint} The minimum recordable value. Must be an integer
818
+ * ` lowest ` {number|bigint} The lowest discernible value. Must be an integer
819
819
value greater than 0. ** Default:** ` 1 ` .
820
- * ` max ` {number|bigint} The maximum recordable value. Must be an integer
821
- value greater than ` min ` . ** Default:** ` Number.MAX_SAFE_INTEGER ` .
820
+ * ` highest ` {number|bigint} The highest recordable value. Must be an integer
821
+ value that is equal to or greater than two times ` min ` .
822
+ ** Default:** ` Number.MAX_SAFE_INTEGER ` .
822
823
* ` figures ` {number} The number of accuracy digits. Must be a number between
823
824
` 1 ` and ` 5 ` . ** Default:** ` 3 ` .
824
825
* Returns {RecordableHistogram}
@@ -868,6 +869,26 @@ console.log(h.percentile(99));
868
869
added: v11.10.0
869
870
-->
870
871
872
+ ### ` histogram.count `
873
+
874
+ <!-- YAML
875
+ added: REPLACEME
876
+ -->
877
+
878
+ * {number}
879
+
880
+ The number of samples recorded by the histogram.
881
+
882
+ ### ` histogram.countBigInt `
883
+
884
+ <!-- YAML
885
+ added: REPLACEME
886
+ -->
887
+
888
+ * {bigint}
889
+
890
+ The number of samples recorded by the histogram.
891
+
871
892
### ` histogram.exceeds `
872
893
873
894
<!-- YAML
@@ -879,6 +900,17 @@ added: v11.10.0
879
900
The number of times the event loop delay exceeded the maximum 1 hour event
880
901
loop delay threshold.
881
902
903
+ ### ` histogram.exceedsBigInt `
904
+
905
+ <!-- YAML
906
+ added: REPLACEME
907
+ -->
908
+
909
+ * {bigint}
910
+
911
+ The number of times the event loop delay exceeded the maximum 1 hour event
912
+ loop delay threshold.
913
+
882
914
### ` histogram.max `
883
915
884
916
<!-- YAML
@@ -889,6 +921,16 @@ added: v11.10.0
889
921
890
922
The maximum recorded event loop delay.
891
923
924
+ ### ` histogram.maxBigInt `
925
+
926
+ <!-- YAML
927
+ added: REPLACEME
928
+ -->
929
+
930
+ * {bigint}
931
+
932
+ The maximum recorded event loop delay.
933
+
892
934
### ` histogram.mean `
893
935
894
936
<!-- YAML
@@ -909,6 +951,16 @@ added: v11.10.0
909
951
910
952
The minimum recorded event loop delay.
911
953
954
+ ### ` histogram.minBigInt `
955
+
956
+ <!-- YAML
957
+ added: REPLACEME
958
+ -->
959
+
960
+ * {bigint}
961
+
962
+ The minimum recorded event loop delay.
963
+
912
964
### ` histogram.percentile(percentile) `
913
965
914
966
<!-- YAML
@@ -920,6 +972,17 @@ added: v11.10.0
920
972
921
973
Returns the value at the given percentile.
922
974
975
+ ### ` histogram.percentileBigInt(percentile) `
976
+
977
+ <!-- YAML
978
+ added: REPLACEME
979
+ -->
980
+
981
+ * ` percentile ` {number} A percentile value in the range (0, 100).
982
+ * Returns: {bigint}
983
+
984
+ Returns the value at the given percentile.
985
+
923
986
### ` histogram.percentiles `
924
987
925
988
<!-- YAML
@@ -930,6 +993,16 @@ added: v11.10.0
930
993
931
994
Returns a ` Map ` object detailing the accumulated percentile distribution.
932
995
996
+ ### ` histogram.percentilesBigInt `
997
+
998
+ <!-- YAML
999
+ added: REPLACEME
1000
+ -->
1001
+
1002
+ * {Map}
1003
+
1004
+ Returns a ` Map ` object detailing the accumulated percentile distribution.
1005
+
933
1006
### ` histogram.reset() `
934
1007
935
1008
<!-- YAML
@@ -986,6 +1059,16 @@ implement the `enable()` and `disable()` methods.
986
1059
added: v15.9.0
987
1060
-->
988
1061
1062
+ ### ` histogram.add(other) `
1063
+
1064
+ <!-- YAML
1065
+ added: REPLACEME
1066
+ -->
1067
+
1068
+ * ` other ` {RecordableHistogram}
1069
+
1070
+ Adds the values from ` other ` to this histogram.
1071
+
989
1072
### ` histogram.record(val) `
990
1073
991
1074
<!-- YAML
0 commit comments