@@ -51,8 +51,8 @@ void testRecordDouble() {
51
51
// 1 Always belongs to index 0.
52
52
base2ExponentialHistogram .recordDouble (1.000000000001 );
53
53
assertThat (base2ExponentialHistogram .getScale ()).isEqualTo (MAX_SCALE );
54
- assertThat (base2ExponentialHistogram .getCurrentValuesSnapshot ().zeroCount ()).isZero ();
55
- assertThat (getAllBucketsCountSum (base2ExponentialHistogram .getCurrentValuesSnapshot ())).isEqualTo (1 );
54
+ assertThat (base2ExponentialHistogram .getCurrentValuesSnapshot (false ).zeroCount ()).isZero ();
55
+ assertThat (getAllBucketsCountSum (base2ExponentialHistogram .getCurrentValuesSnapshot (false ))).isEqualTo (1 );
56
56
}
57
57
58
58
@ Test
@@ -66,7 +66,7 @@ void testRecordTimeBased() {
66
66
// calling
67
67
// recordDouble(2).
68
68
69
- ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
69
+ ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
70
70
assertThat (currentSnapshot .zeroCount ()).isZero ();
71
71
assertThat (currentSnapshot .scale ()).isLessThan (MAX_SCALE );
72
72
assertThat (getAllBucketsCountSum (currentSnapshot )).isEqualTo (2 );
@@ -84,13 +84,13 @@ void testRecordTimeBasedInSeconds() {
84
84
// This should be same as calling recordDouble(0.05).
85
85
base2ExponentialHistogram .recordLong (Duration .ofMillis (50 ).toNanos ());
86
86
87
- ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
87
+ ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
88
88
assertThat (currentSnapshot .zeroCount ()).isZero ();
89
89
assertThat (currentSnapshot .scale ()).isLessThan (MAX_SCALE );
90
90
assertThat (getAllBucketsCountSum (currentSnapshot )).isEqualTo (2 );
91
91
92
92
base2ExponentialHistogram .recordLong (Duration .ofMillis (90 ).toNanos ());
93
- currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
93
+ currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
94
94
assertThat (currentSnapshot .scale ()).isEqualTo (1 );
95
95
assertThat (getAllBucketsCountSum (currentSnapshot )).isEqualTo (3 );
96
96
}
@@ -101,7 +101,7 @@ void testZeroThreshHold() {
101
101
base2ExponentialHistogram .recordDouble (0.0 );
102
102
base2ExponentialHistogram .recordDouble (0.5 );
103
103
104
- ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
104
+ ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
105
105
assertThat (currentSnapshot .zeroThreshold ()).isLessThan (1 ).isGreaterThan (0 );
106
106
assertThat (currentSnapshot .zeroCount ()).isEqualTo (2 );
107
107
assertThat (currentSnapshot .scale ()).isEqualTo (MAX_SCALE );
@@ -113,7 +113,7 @@ void testZeroThreshHold() {
113
113
base2ExponentialHistogramWithZeroAsMin .recordDouble (Math .nextUp (0.0 ));
114
114
115
115
ExponentialHistogramSnapShot snapshotWithZeroAsMin = base2ExponentialHistogramWithZeroAsMin
116
- .getCurrentValuesSnapshot ();
116
+ .getCurrentValuesSnapshot (false );
117
117
assertThat (snapshotWithZeroAsMin .zeroThreshold ()).isEqualTo (0.0 );
118
118
assertThat (snapshotWithZeroAsMin .zeroCount ()).isEqualTo (1 );
119
119
assertThat (snapshotWithZeroAsMin .scale ()).isEqualTo (MAX_SCALE );
@@ -124,7 +124,7 @@ void testZeroThreshHold() {
124
124
void testDownScale () {
125
125
base2ExponentialHistogram .recordDouble (1.0001 );
126
126
127
- ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
127
+ ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
128
128
assertThat (currentSnapshot .zeroCount ()).isZero ();
129
129
assertThat (currentSnapshot .scale ()).isEqualTo (MAX_SCALE );
130
130
assertThat (getAllBucketsCountSum (currentSnapshot )).isEqualTo (1 );
@@ -182,11 +182,11 @@ void testUpscale() {
182
182
183
183
@ Test
184
184
void testValuesAtIndices () {
185
- ExponentialHistogramSnapShot currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
185
+ ExponentialHistogramSnapShot currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
186
186
assertThat (currentValueSnapshot .positive ().bucketCounts ()).isEmpty ();
187
187
188
188
base2ExponentialHistogram .recordDouble (1.0001 );
189
- currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
189
+ currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
190
190
assertThat (currentValueSnapshot .positive ().offset ()).isZero ();
191
191
assertThat (currentValueSnapshot .positive ().bucketCounts ().get (0 )).isEqualTo (1 );
192
192
assertThat (currentValueSnapshot .positive ().bucketCounts ()).filteredOn (value -> value == 0 ).isEmpty ();
@@ -195,7 +195,7 @@ void testValuesAtIndices() {
195
195
196
196
base2ExponentialHistogram .recordDouble (1.0076 );
197
197
base2ExponentialHistogram .recordDouble (1.008 );
198
- currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
198
+ currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
199
199
assertThat (currentValueSnapshot .positive ().offset ()).isZero ();
200
200
assertThat (base2ExponentialHistogram .getScale ()).isEqualTo (MAX_SCALE );
201
201
assertThat (currentValueSnapshot .positive ().bucketCounts ().get (0 )).isEqualTo (1 );
@@ -206,7 +206,7 @@ void testValuesAtIndices() {
206
206
// We will record a value that will downscale by 1 and this should merge 2
207
207
// consecutive buckets into one.
208
208
base2ExponentialHistogram .recordDouble (1.012 );
209
- currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
209
+ currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
210
210
assertThat (currentValueSnapshot .positive ().offset ()).isZero ();
211
211
assertThat (base2ExponentialHistogram .getScale ()).isEqualTo (MAX_SCALE - 1 );
212
212
assertThat (currentValueSnapshot .positive ().bucketCounts ().get (0 )).isEqualTo (2 );
@@ -216,7 +216,7 @@ void testValuesAtIndices() {
216
216
217
217
// The base will reduced by a factor of more than one,
218
218
base2ExponentialHistogram .recordDouble (4 );
219
- currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
219
+ currentValueSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
220
220
assertThat (currentValueSnapshot .positive ().offset ()).isZero ();
221
221
assertThat (base2ExponentialHistogram .getScale ()).isEqualTo (3 );
222
222
assertThat (currentValueSnapshot .positive ().bucketCounts ().get (0 )).isEqualTo (5 );
@@ -242,15 +242,15 @@ void reset() {
242
242
base2ExponentialHistogram .recordDouble (1 );
243
243
base2ExponentialHistogram .recordDouble (2 );
244
244
245
- ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
245
+ ExponentialHistogramSnapShot currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
246
246
final int intialScale = currentSnapshot .scale ();
247
247
assertThat (currentSnapshot .zeroCount ()).isEqualTo (1 );
248
248
assertThat (currentSnapshot .scale ()).isLessThan (MAX_SCALE );
249
249
assertThat (currentSnapshot .positive ().offset ()).isNotZero ();
250
250
assertThat (getAllBucketsCountSum (currentSnapshot )).isEqualTo (2 );
251
251
252
252
base2ExponentialHistogram .reset ();
253
- currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot ();
253
+ currentSnapshot = base2ExponentialHistogram .getCurrentValuesSnapshot (false );
254
254
assertThat (currentSnapshot .zeroCount ()).isZero ();
255
255
assertThat (currentSnapshot .scale ()).isEqualTo (intialScale );
256
256
assertThat (currentSnapshot .positive ().offset ()).isZero ();
0 commit comments