Search in sources :

Example 1 with Histogram

use of com.uber.m3.tally.Histogram in project sdk-java by temporalio.

the class ReplayAwareScopeTest method testReplayAwareScopeReplaying.

@Test
public void testReplayAwareScopeReplaying() {
    Scope scope = mock(Scope.class);
    Counter counter = mock(Counter.class);
    Gauge gauge = mock(Gauge.class);
    Timer timer = mock(Timer.class);
    Histogram histogram = mock(Histogram.class);
    @SuppressWarnings("deprecation") com.uber.m3.tally.Buckets buckets = ValueBuckets.linear(0, 10, 10);
    when(scope.counter("test-counter")).thenReturn(counter);
    when(scope.gauge("test-gauge")).thenReturn(gauge);
    when(scope.timer("test-timer")).thenReturn(timer);
    when(scope.histogram("test-histogram", buckets)).thenReturn(histogram);
    TestContext context = new TestContext(true);
    Scope replayAwareScope = new ReplayAwareScope(scope, context, System::currentTimeMillis);
    replayAwareScope.counter("test-counter").inc(1);
    replayAwareScope.gauge("test-gauge").update(100.0);
    replayAwareScope.timer("test-timer").record(Duration.ofMillis(100));
    replayAwareScope.histogram("test-histogram", buckets).recordValue(10);
    replayAwareScope.histogram("test-histogram", buckets).recordDuration(Duration.ofHours(1));
    verify(counter, never()).inc(1);
    verify(gauge, never()).update(100.0);
    verify(timer, never()).record(Duration.ofMillis(100));
    verify(histogram, never()).recordValue(10);
    verify(histogram, never()).recordDuration(Duration.ofHours(1));
}
Also used : Histogram(com.uber.m3.tally.Histogram) Counter(com.uber.m3.tally.Counter) Scope(com.uber.m3.tally.Scope) Timer(com.uber.m3.tally.Timer) Gauge(com.uber.m3.tally.Gauge) Test(org.junit.Test)

Example 2 with Histogram

use of com.uber.m3.tally.Histogram in project cadence-client by uber-java.

the class ReplayAwareScopeTest method testReplayAwareScopeNotReplaying.

@Test
public void testReplayAwareScopeNotReplaying() {
    Scope scope = mock(Scope.class);
    Counter counter = mock(Counter.class);
    Gauge gauge = mock(Gauge.class);
    Timer timer = mock(Timer.class);
    Histogram histogram = mock(Histogram.class);
    Buckets buckets = ValueBuckets.linear(0, 10, 10);
    when(scope.counter("test-counter")).thenReturn(counter);
    when(scope.gauge("test-gauge")).thenReturn(gauge);
    when(scope.timer("test-timer")).thenReturn(timer);
    when(scope.histogram("test-histogram", buckets)).thenReturn(histogram);
    TestContext context = new TestContext(false);
    Scope replayAwareScope = new ReplayAwareScope(scope, context, System::currentTimeMillis);
    replayAwareScope.counter("test-counter").inc(1);
    replayAwareScope.gauge("test-gauge").update(100.0);
    replayAwareScope.timer("test-timer").record(Duration.ofMillis(100));
    replayAwareScope.histogram("test-histogram", buckets).recordValue(10);
    replayAwareScope.histogram("test-histogram", buckets).recordDuration(Duration.ofHours(1));
    verify(counter, times(1)).inc(1);
    verify(gauge, times(1)).update(100.0);
    verify(timer, times(1)).record(Duration.ofMillis(100));
    verify(histogram, times(1)).recordValue(10);
    verify(histogram, times(1)).recordDuration(Duration.ofHours(1));
}
Also used : Histogram(com.uber.m3.tally.Histogram) Counter(com.uber.m3.tally.Counter) Scope(com.uber.m3.tally.Scope) ReplayAwareScope(com.uber.cadence.internal.metrics.ReplayAwareScope) Timer(com.uber.m3.tally.Timer) ReplayAwareScope(com.uber.cadence.internal.metrics.ReplayAwareScope) ValueBuckets(com.uber.m3.tally.ValueBuckets) Buckets(com.uber.m3.tally.Buckets) Gauge(com.uber.m3.tally.Gauge) Test(org.junit.Test)

Example 3 with Histogram

use of com.uber.m3.tally.Histogram in project cadence-client by uber-java.

the class ReplayAwareScopeTest method testCustomClockForTimer.

@Test
public void testCustomClockForTimer() {
    Scope scope = mock(Scope.class);
    Timer timer = mock(Timer.class);
    Histogram histogram = mock(Histogram.class);
    Buckets buckets = ValueBuckets.linear(0, 10, 10);
    when(scope.timer("test-timer")).thenReturn(timer);
    when(scope.histogram("test-histogram", buckets)).thenReturn(histogram);
    TestContext context = new TestContext(false);
    TestClock clock = new TestClock();
    clock.setTime(0);
    Scope replayAwareScope = new ReplayAwareScope(scope, context, clock);
    Stopwatch sw = replayAwareScope.timer("test-timer").start();
    clock.setTime(100);
    sw.stop();
    sw = replayAwareScope.histogram("test-histogram", buckets).start();
    clock.setTime(150);
    sw.stop();
    verify(timer, times(1)).record(Duration.ofMillis(100));
    verify(histogram, times(1)).recordDuration(Duration.ofMillis(50));
}
Also used : Histogram(com.uber.m3.tally.Histogram) Scope(com.uber.m3.tally.Scope) ReplayAwareScope(com.uber.cadence.internal.metrics.ReplayAwareScope) Timer(com.uber.m3.tally.Timer) ReplayAwareScope(com.uber.cadence.internal.metrics.ReplayAwareScope) Stopwatch(com.uber.m3.tally.Stopwatch) ValueBuckets(com.uber.m3.tally.ValueBuckets) Buckets(com.uber.m3.tally.Buckets) Test(org.junit.Test)

Example 4 with Histogram

use of com.uber.m3.tally.Histogram in project cadence-client by uber-java.

the class ReplayAwareScopeTest method testReplayAwareScopeReplaying.

@Test
public void testReplayAwareScopeReplaying() {
    Scope scope = mock(Scope.class);
    Counter counter = mock(Counter.class);
    Gauge gauge = mock(Gauge.class);
    Timer timer = mock(Timer.class);
    Histogram histogram = mock(Histogram.class);
    Buckets buckets = ValueBuckets.linear(0, 10, 10);
    when(scope.counter("test-counter")).thenReturn(counter);
    when(scope.gauge("test-gauge")).thenReturn(gauge);
    when(scope.timer("test-timer")).thenReturn(timer);
    when(scope.histogram("test-histogram", buckets)).thenReturn(histogram);
    TestContext context = new TestContext(true);
    Scope replayAwareScope = new ReplayAwareScope(scope, context, System::currentTimeMillis);
    replayAwareScope.counter("test-counter").inc(1);
    replayAwareScope.gauge("test-gauge").update(100.0);
    replayAwareScope.timer("test-timer").record(Duration.ofMillis(100));
    replayAwareScope.histogram("test-histogram", buckets).recordValue(10);
    replayAwareScope.histogram("test-histogram", buckets).recordDuration(Duration.ofHours(1));
    verify(counter, never()).inc(1);
    verify(gauge, never()).update(100.0);
    verify(timer, never()).record(Duration.ofMillis(100));
    verify(histogram, never()).recordValue(10);
    verify(histogram, never()).recordDuration(Duration.ofHours(1));
}
Also used : Histogram(com.uber.m3.tally.Histogram) Counter(com.uber.m3.tally.Counter) Scope(com.uber.m3.tally.Scope) ReplayAwareScope(com.uber.cadence.internal.metrics.ReplayAwareScope) Timer(com.uber.m3.tally.Timer) ReplayAwareScope(com.uber.cadence.internal.metrics.ReplayAwareScope) ValueBuckets(com.uber.m3.tally.ValueBuckets) Buckets(com.uber.m3.tally.Buckets) Gauge(com.uber.m3.tally.Gauge) Test(org.junit.Test)

Example 5 with Histogram

use of com.uber.m3.tally.Histogram in project cadence-client by uber-java.

the class NoopScope method getInstance.

public static synchronized Scope getInstance() {
    if (noopScope == null) {
        noopCounter = delta -> {
        };
        noopGauge = value -> {
        };
        noopTimer = new Timer() {

            @Override
            public void record(Duration interval) {
            }

            @Override
            public Stopwatch start() {
                return new Stopwatch(0, stopwatchStart -> {
                });
            }
        };
        noopHistogram = new Histogram() {

            @Override
            public void recordValue(double value) {
            }

            @Override
            public void recordDuration(Duration value) {
            }

            @Override
            public Stopwatch start() {
                return new Stopwatch(0, stopwatchStart -> {
                });
            }
        };
        noopScope = new NoopScope();
    }
    return noopScope;
}
Also used : Stopwatch(com.uber.m3.tally.Stopwatch) Scope(com.uber.m3.tally.Scope) Timer(com.uber.m3.tally.Timer) CapableOf(com.uber.m3.tally.CapableOf) Map(java.util.Map) Counter(com.uber.m3.tally.Counter) Histogram(com.uber.m3.tally.Histogram) Capabilities(com.uber.m3.tally.Capabilities) Gauge(com.uber.m3.tally.Gauge) Duration(com.uber.m3.util.Duration) Buckets(com.uber.m3.tally.Buckets) Histogram(com.uber.m3.tally.Histogram) Timer(com.uber.m3.tally.Timer) Stopwatch(com.uber.m3.tally.Stopwatch) Duration(com.uber.m3.util.Duration)

Aggregations

Histogram (com.uber.m3.tally.Histogram)7 Scope (com.uber.m3.tally.Scope)7 Timer (com.uber.m3.tally.Timer)7 Test (org.junit.Test)6 Counter (com.uber.m3.tally.Counter)5 Gauge (com.uber.m3.tally.Gauge)5 Buckets (com.uber.m3.tally.Buckets)4 ReplayAwareScope (com.uber.cadence.internal.metrics.ReplayAwareScope)3 Stopwatch (com.uber.m3.tally.Stopwatch)3 ValueBuckets (com.uber.m3.tally.ValueBuckets)3 Capabilities (com.uber.m3.tally.Capabilities)1 CapableOf (com.uber.m3.tally.CapableOf)1 Duration (com.uber.m3.util.Duration)1 Map (java.util.Map)1