You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/metrics/src/main/java/io/opentelemetry/sdk/metrics/internal/aggregator/DoubleExponentialHistogramBuckets.java
Copy file name to clipboardExpand all lines: sdk/metrics/src/main/java/io/opentelemetry/sdk/metrics/internal/data/exponentialhistogram/ExponentialHistogramBuckets.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
* ExponentialHistogramBuckets represents either the positive or negative measurements taken for a
13
13
* {@link ExponentialHistogramPointData}.
14
14
*
15
-
* <p>The bucket boundaries are lower-bound inclusive, and are calculated using the {@link
15
+
* <p>The bucket boundaries are lower-bound exclusive, and are calculated using the {@link
16
16
* ExponentialHistogramPointData#getScale()} and the {@link #getOffset()}.
17
17
*
18
18
* <p>For example, assume {@link ExponentialHistogramPointData#getScale()} is 0, the base is 2.0.
@@ -35,7 +35,7 @@ public interface ExponentialHistogramBuckets {
35
35
intgetOffset();
36
36
37
37
/**
38
-
* The bucket counts is a of counts representing number of measurements that fall into each
38
+
* The bucket counts is a list of counts representing number of measurements that fall into each
Copy file name to clipboardExpand all lines: sdk/metrics/src/main/java/io/opentelemetry/sdk/metrics/internal/data/exponentialhistogram/ExponentialHistogramPointData.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,9 @@
20
20
* <p>The bucket boundaries are calculated using both the scale {@link #getScale()}, and the offset
Copy file name to clipboardExpand all lines: sdk/metrics/src/test/java/io/opentelemetry/sdk/metrics/internal/aggregator/DoubleExponentialHistogramAggregatorTest.java
Copy file name to clipboardExpand all lines: sdk/metrics/src/test/java/io/opentelemetry/sdk/metrics/internal/aggregator/DoubleExponentialHistogramBucketsTest.java
0 commit comments