use of io.opentelemetry.api.metrics.DoubleCounter in project opentelemetry-java by open-telemetry.
the class SdkDoubleCounterTest method stressTest_WithDifferentLabelSet.
@Test
void stressTest_WithDifferentLabelSet() {
String[] keys = { "Key_1", "Key_2", "Key_3", "Key_4" };
String[] values = { "Value_1", "Value_2", "Value_3", "Value_4" };
DoubleCounter doubleCounter = sdkMeter.counterBuilder("testCounter").ofDoubles().build();
StressTestRunner.Builder stressTestBuilder = StressTestRunner.builder().setInstrument((SdkDoubleCounter) doubleCounter).setCollectionIntervalMs(100);
for (int i = 0; i < 4; i++) {
stressTestBuilder.addOperation(StressTestRunner.Operation.create(2_000, 1, new OperationUpdaterDirectCall(doubleCounter, keys[i], values[i])));
stressTestBuilder.addOperation(StressTestRunner.Operation.create(2_000, 1, new OperationUpdaterWithBinding(((SdkDoubleCounter) doubleCounter).bind(Attributes.builder().put(keys[i], values[i]).build()))));
}
stressTestBuilder.build().run();
assertThat(sdkMeterReader.collectAllMetrics()).satisfiesExactly(metric -> assertThat(metric).hasResource(RESOURCE).hasInstrumentationLibrary(INSTRUMENTATION_LIBRARY_INFO).hasDoubleSum().isCumulative().isMonotonic().points().allSatisfy(point -> assertThat(point).hasStartEpochNanos(testClock.now()).hasEpochNanos(testClock.now()).hasValue(40_000)).extracting(PointData::getAttributes).containsExactlyInAnyOrder(Attributes.of(stringKey(keys[0]), values[0]), Attributes.of(stringKey(keys[1]), values[1]), Attributes.of(stringKey(keys[2]), values[2]), Attributes.of(stringKey(keys[3]), values[3])));
}
use of io.opentelemetry.api.metrics.DoubleCounter in project opentelemetry-java by open-telemetry.
the class SdkDoubleCounterTest method boundDoubleCounterAdd_Monotonicity.
@Test
void boundDoubleCounterAdd_Monotonicity() {
DoubleCounter doubleCounter = sdkMeter.counterBuilder("testCounter").ofDoubles().build();
BoundDoubleCounter bound = ((SdkDoubleCounter) doubleCounter).bind(Attributes.empty());
try {
bound.add(-9.3);
assertThat(sdkMeterReader.collectAllMetrics()).hasSize(0);
logs.assertContains("Counters can only increase. Instrument testCounter has recorded a negative value.");
} finally {
bound.unbind();
}
}
use of io.opentelemetry.api.metrics.DoubleCounter in project opentelemetry-java by open-telemetry.
the class SdkDoubleCounterTest method collectMetrics_NoRecords.
@Test
void collectMetrics_NoRecords() {
DoubleCounter doubleCounter = sdkMeter.counterBuilder("testCounter").ofDoubles().build();
BoundDoubleCounter bound = ((SdkDoubleCounter) doubleCounter).bind(Attributes.builder().put("foo", "bar").build());
try {
assertThat(sdkMeterReader.collectAllMetrics()).isEmpty();
} finally {
bound.unbind();
}
}
use of io.opentelemetry.api.metrics.DoubleCounter in project opentelemetry-java by open-telemetry.
the class SdkDoubleCounterTest method collectMetrics_WithMultipleCollects.
@Test
void collectMetrics_WithMultipleCollects() {
long startTime = testClock.now();
DoubleCounter doubleCounter = sdkMeter.counterBuilder("testCounter").ofDoubles().build();
BoundDoubleCounter bound = ((SdkDoubleCounter) doubleCounter).bind(Attributes.builder().put("K", "V").build());
try {
// Do some records using bounds and direct calls and bindings.
doubleCounter.add(12.1d, Attributes.empty());
bound.add(123.3d);
doubleCounter.add(21.4d, Attributes.empty());
// Advancing time here should not matter.
testClock.advance(Duration.ofNanos(SECOND_NANOS));
bound.add(321.5d);
doubleCounter.add(111.1d, Attributes.builder().put("K", "V").build());
assertThat(sdkMeterReader.collectAllMetrics()).satisfiesExactly(metric -> assertThat(metric).hasResource(RESOURCE).hasInstrumentationLibrary(INSTRUMENTATION_LIBRARY_INFO).hasName("testCounter").hasDescription("").hasUnit("1").hasDoubleSum().isMonotonic().isCumulative().points().allSatisfy(point -> assertThat(point).hasStartEpochNanos(startTime).hasEpochNanos(testClock.now())).satisfiesExactlyInAnyOrder(point -> assertThat(point).hasAttributes(Attributes.empty()).hasValue(33.5), point -> assertThat(point).hasValue(555.9).attributes().hasSize(1).containsEntry("K", "V")));
// Repeat to prove we keep previous values.
testClock.advance(Duration.ofNanos(SECOND_NANOS));
bound.add(222d);
doubleCounter.add(11d, Attributes.empty());
assertThat(sdkMeterReader.collectAllMetrics()).satisfiesExactly(metric -> assertThat(metric).hasDoubleSum().isCumulative().points().allSatisfy(point -> assertThat(point).hasStartEpochNanos(startTime).hasEpochNanos(testClock.now())).satisfiesExactlyInAnyOrder(point -> assertThat(point).hasAttributes(Attributes.empty()).hasValue(44.5), point -> assertThat(point).hasAttributes(Attributes.of(stringKey("K"), "V")).hasValue(777.9)));
} finally {
bound.unbind();
}
}
use of io.opentelemetry.api.metrics.DoubleCounter in project opentelemetry-java by open-telemetry.
the class SdkDoubleCounterTest method doubleCounterAdd_Monotonicity.
@Test
void doubleCounterAdd_Monotonicity() {
DoubleCounter doubleCounter = sdkMeter.counterBuilder("testCounter").ofDoubles().build();
doubleCounter.add(-45.77d);
assertThat(sdkMeterReader.collectAllMetrics()).hasSize(0);
logs.assertContains("Counters can only increase. Instrument testCounter has recorded a negative value.");
}
Aggregations