Search in sources :

Example 1 with ALLOCATION_SIZE_KEY

use of com.splunk.opentelemetry.profiler.TLABProcessor.ALLOCATION_SIZE_KEY in project splunk-otel-java by signalfx.

the class TLABProcessorTest method tlabProcessTest.

private void tlabProcessTest(Long tlabSize) {
    Instant now = Instant.now();
    AtomicReference<LogData> seenLogData = new AtomicReference<>();
    LogProcessor consumer = seenLogData::set;
    String stackAsString = "\"mockingbird\" #606\n" + "   java.lang.Thread.State: UNKNOWN\n" + "i am a serialized stack believe me";
    StackSerializer serializer = mock(StackSerializer.class);
    LogDataCommonAttributes commonAttrs = new LogDataCommonAttributes(new EventPeriods(x -> null));
    Clock clock = new MockClock(now);
    RecordedEvent event = createMockEvent(serializer, now, tlabSize);
    Config config = mock(Config.class);
    when(config.getBoolean(CONFIG_KEY_TLAB_ENABLED, DEFAULT_MEMORY_ENABLED)).thenReturn(true);
    SpanContext spanContext = SpanContext.create(TraceId.fromLongs(123, 456), SpanId.fromLong(123), TraceFlags.getSampled(), TraceState.getDefault());
    SpanContextualizer spanContextualizer = mock(SpanContextualizer.class);
    when(spanContextualizer.link(THREAD_ID)).thenReturn(new SpanLinkage(spanContext, THREAD_ID));
    TLABProcessor processor = TLABProcessor.builder(config).stackSerializer(serializer).logProcessor(consumer).commonAttributes(commonAttrs).resource(Resource.getDefault()).spanContextualizer(spanContextualizer).build();
    processor.accept(event);
    assertEquals(stackAsString, seenLogData.get().getBody().asString());
    assertEquals(TimeUnit.SECONDS.toNanos(now.getEpochSecond()) + clock.nanoTime(), seenLogData.get().getEpochNanos());
    assertEquals("otel.profiling", seenLogData.get().getAttributes().get(SOURCE_TYPE));
    assertEquals("tee-lab", seenLogData.get().getAttributes().get(SOURCE_EVENT_NAME));
    assertEquals(ONE_MB, seenLogData.get().getAttributes().get(ALLOCATION_SIZE_KEY));
    assertEquals(spanContext, seenLogData.get().getSpanContext());
}
Also used : Clock(io.opentelemetry.sdk.common.Clock) TraceFlags(io.opentelemetry.api.trace.TraceFlags) LogProcessor(io.opentelemetry.sdk.logs.LogProcessor) ArgumentMatchers.anyLong(org.mockito.ArgumentMatchers.anyLong) SpanId(io.opentelemetry.api.trace.SpanId) Resource(io.opentelemetry.sdk.resources.Resource) Assertions.assertNull(org.junit.jupiter.api.Assertions.assertNull) SOURCE_EVENT_NAME(com.splunk.opentelemetry.profiler.ProfilingSemanticAttributes.SOURCE_EVENT_NAME) SpanLinkage(com.splunk.opentelemetry.profiler.context.SpanLinkage) EventPeriods(com.splunk.opentelemetry.profiler.events.EventPeriods) AtomicReference(java.util.concurrent.atomic.AtomicReference) Answer(org.mockito.stubbing.Answer) TraceState(io.opentelemetry.api.trace.TraceState) InvocationOnMock(org.mockito.invocation.InvocationOnMock) ALLOCATION_SIZE_KEY(com.splunk.opentelemetry.profiler.TLABProcessor.ALLOCATION_SIZE_KEY) CONFIG_KEY_MEMORY_SAMPLER_INTERVAL(com.splunk.opentelemetry.profiler.Configuration.CONFIG_KEY_MEMORY_SAMPLER_INTERVAL) Assertions.assertEquals(org.junit.jupiter.api.Assertions.assertEquals) EventType(jdk.jfr.EventType) LogData(io.opentelemetry.sdk.logs.data.LogData) CONFIG_KEY_TLAB_ENABLED(com.splunk.opentelemetry.profiler.Configuration.CONFIG_KEY_TLAB_ENABLED) SpanContext(io.opentelemetry.api.trace.SpanContext) DEFAULT_MEMORY_ENABLED(com.splunk.opentelemetry.profiler.Configuration.DEFAULT_MEMORY_ENABLED) Mockito.when(org.mockito.Mockito.when) DEFAULT_MEMORY_SAMPLING_INTERVAL(com.splunk.opentelemetry.profiler.Configuration.DEFAULT_MEMORY_SAMPLING_INTERVAL) Instant(java.time.Instant) RecordedStackTrace(jdk.jfr.consumer.RecordedStackTrace) SpanContextualizer(com.splunk.opentelemetry.profiler.context.SpanContextualizer) Config(io.opentelemetry.instrumentation.api.config.Config) TimeUnit(java.util.concurrent.TimeUnit) RecordedEvent(jdk.jfr.consumer.RecordedEvent) Test(org.junit.jupiter.api.Test) SOURCE_TYPE(com.splunk.opentelemetry.profiler.ProfilingSemanticAttributes.SOURCE_TYPE) RecordedThread(jdk.jfr.consumer.RecordedThread) StackSerializer(com.splunk.opentelemetry.profiler.util.StackSerializer) AttributeKey(io.opentelemetry.api.common.AttributeKey) TraceId(io.opentelemetry.api.trace.TraceId) Mockito.mock(org.mockito.Mockito.mock) LogData(io.opentelemetry.sdk.logs.data.LogData) EventPeriods(com.splunk.opentelemetry.profiler.events.EventPeriods) SpanContext(io.opentelemetry.api.trace.SpanContext) StackSerializer(com.splunk.opentelemetry.profiler.util.StackSerializer) Config(io.opentelemetry.instrumentation.api.config.Config) SpanLinkage(com.splunk.opentelemetry.profiler.context.SpanLinkage) Instant(java.time.Instant) RecordedEvent(jdk.jfr.consumer.RecordedEvent) AtomicReference(java.util.concurrent.atomic.AtomicReference) LogProcessor(io.opentelemetry.sdk.logs.LogProcessor) Clock(io.opentelemetry.sdk.common.Clock) SpanContextualizer(com.splunk.opentelemetry.profiler.context.SpanContextualizer)

Aggregations

CONFIG_KEY_MEMORY_SAMPLER_INTERVAL (com.splunk.opentelemetry.profiler.Configuration.CONFIG_KEY_MEMORY_SAMPLER_INTERVAL)1 CONFIG_KEY_TLAB_ENABLED (com.splunk.opentelemetry.profiler.Configuration.CONFIG_KEY_TLAB_ENABLED)1 DEFAULT_MEMORY_ENABLED (com.splunk.opentelemetry.profiler.Configuration.DEFAULT_MEMORY_ENABLED)1 DEFAULT_MEMORY_SAMPLING_INTERVAL (com.splunk.opentelemetry.profiler.Configuration.DEFAULT_MEMORY_SAMPLING_INTERVAL)1 SOURCE_EVENT_NAME (com.splunk.opentelemetry.profiler.ProfilingSemanticAttributes.SOURCE_EVENT_NAME)1 SOURCE_TYPE (com.splunk.opentelemetry.profiler.ProfilingSemanticAttributes.SOURCE_TYPE)1 ALLOCATION_SIZE_KEY (com.splunk.opentelemetry.profiler.TLABProcessor.ALLOCATION_SIZE_KEY)1 SpanContextualizer (com.splunk.opentelemetry.profiler.context.SpanContextualizer)1 SpanLinkage (com.splunk.opentelemetry.profiler.context.SpanLinkage)1 EventPeriods (com.splunk.opentelemetry.profiler.events.EventPeriods)1 StackSerializer (com.splunk.opentelemetry.profiler.util.StackSerializer)1 AttributeKey (io.opentelemetry.api.common.AttributeKey)1 SpanContext (io.opentelemetry.api.trace.SpanContext)1 SpanId (io.opentelemetry.api.trace.SpanId)1 TraceFlags (io.opentelemetry.api.trace.TraceFlags)1 TraceId (io.opentelemetry.api.trace.TraceId)1 TraceState (io.opentelemetry.api.trace.TraceState)1 Config (io.opentelemetry.instrumentation.api.config.Config)1 Clock (io.opentelemetry.sdk.common.Clock)1 LogProcessor (io.opentelemetry.sdk.logs.LogProcessor)1