use of wavefront.report.Span in project java by wavefrontHQ.
the class CustomTracingPortUnificationHandlerTest method reportsCorrectDuration.
@Test
public void reportsCorrectDuration() {
WavefrontInternalReporter reporter = EasyMock.niceMock(WavefrontInternalReporter.class);
expect(reporter.newDeltaCounter(anyObject())).andReturn(new DeltaCounter()).anyTimes();
WavefrontHistogram histogram = EasyMock.niceMock(WavefrontHistogram.class);
expect(reporter.newWavefrontHistogram(anyObject(), anyObject())).andReturn(histogram);
Capture<Long> duration = newCapture();
histogram.update(captureLong(duration));
expectLastCall();
ReportableEntityHandler<Span, String> handler = MockReportableEntityHandlerFactory.getMockTraceHandler();
CustomTracingPortUnificationHandler subject = new CustomTracingPortUnificationHandler(null, null, null, null, null, null, handler, null, null, null, null, null, reporter, null, null, null);
replay(reporter, histogram);
Span span = getSpan();
// milliseconds
span.setDuration(1000);
subject.report(span);
verify(reporter, histogram);
long value = duration.getValue();
// microseconds
assertEquals(1000000, value);
}
use of wavefront.report.Span in project java by wavefrontHQ.
the class CustomTracingPortUnificationHandlerTest method getSpan.
@NotNull
private Span getSpan() {
Span span = new Span();
span.setAnnotations(ImmutableList.of(new Annotation("application", "application"), new Annotation("service", "service")));
return span;
}
use of wavefront.report.Span in project java by wavefrontHQ.
the class TestUtils method parseSpan.
public static Span parseSpan(String line) {
List<Span> out = Lists.newArrayListWithExpectedSize(1);
new SpanDecoder("unknown").decode(line, out, "dummy");
return out.get(0);
}
use of wavefront.report.Span in project java by wavefrontHQ.
the class JaegerTChannelCollectorHandlerTest method testProtectedTagsProcessOverridesProxyConfig.
@Test
public void testProtectedTagsProcessOverridesProxyConfig() throws Exception {
// cluster, shard and service are special tags, because they're indexed by wavefront
// The priority order is:
// Span Level > Process Level > Proxy Level > Default
reset(mockTraceHandler, mockTraceLogsHandler);
mockTraceHandler.report(Span.newBuilder().setCustomer("dummy").setStartMillis(startTime).setDuration(9).setName("HTTP GET /").setSource("source-processtag").setSpanId("00000000-0000-0000-0000-00000023cace").setTraceId("00000000-4996-02d2-0000-011f71fb04cb").setAnnotations(ImmutableList.of(new Annotation("ip", "10.0.0.1"), new Annotation("jaegerSpanId", "23cace"), new Annotation("jaegerTraceId", "499602d20000011f71fb04cb"), new Annotation("service", "frontend"), new Annotation("application", "application-processtag"), new Annotation("cluster", "cluster-processtag"), new Annotation("shard", "shard-processtag"))).build());
expectLastCall();
replay(mockTraceHandler, mockTraceLogsHandler);
JaegerTChannelCollectorHandler handler = new JaegerTChannelCollectorHandler("9876", mockTraceHandler, mockTraceLogsHandler, null, () -> false, () -> false, null, new SpanSampler(new RateSampler(1.0D), () -> null), null, null);
Tag ipTag = new Tag("ip", TagType.STRING);
ipTag.setVStr("10.0.0.1");
Tag sourceProcessTag = new Tag("source", TagType.STRING);
sourceProcessTag.setVStr("source-processtag");
Tag customApplicationProcessTag = new Tag("application", TagType.STRING);
customApplicationProcessTag.setVStr("application-processtag");
Tag customClusterProcessTag = new Tag("cluster", TagType.STRING);
customClusterProcessTag.setVStr("cluster-processtag");
Tag customShardProcessTag = new Tag("shard", TagType.STRING);
customShardProcessTag.setVStr("shard-processtag");
io.jaegertracing.thriftjava.Span span = new io.jaegertracing.thriftjava.Span(1234567890123L, 1234567890L, 2345678L, 0, "HTTP GET /", 1, startTime * 1000, 9 * 1000);
Batch testBatch = new Batch();
testBatch.process = new Process();
testBatch.process.serviceName = "frontend";
testBatch.process.setTags(ImmutableList.of(ipTag, sourceProcessTag, customApplicationProcessTag, customClusterProcessTag, customShardProcessTag));
testBatch.setSpans(ImmutableList.of(span));
Collector.submitBatches_args batches = new Collector.submitBatches_args();
batches.addToBatches(testBatch);
ThriftRequest<Collector.submitBatches_args> request = new ThriftRequest.Builder<Collector.submitBatches_args>("jaeger-collector", "Collector::submitBatches").setBody(batches).build();
handler.handleImpl(request);
verify(mockTraceHandler, mockTraceLogsHandler);
}
use of wavefront.report.Span in project java by wavefrontHQ.
the class JaegerTChannelCollectorHandlerTest method testAllProcessTagsPropagated.
@Test
public void testAllProcessTagsPropagated() throws Exception {
reset(mockTraceHandler, mockTraceLogsHandler);
mockTraceHandler.report(Span.newBuilder().setCustomer("dummy").setStartMillis(startTime).setDuration(9).setName("HTTP GET /").setSource("source-spantag").setSpanId("00000000-0000-0000-0000-00000023cace").setTraceId("00000000-4996-02d2-0000-011f71fb04cb").setAnnotations(ImmutableList.of(new Annotation("ip", "10.0.0.1"), new Annotation("processTag1", "one"), new Annotation("processTag2", "two"), new Annotation("processTag3", "three"), new Annotation("jaegerSpanId", "23cace"), new Annotation("jaegerTraceId", "499602d20000011f71fb04cb"), new Annotation("service", "frontend"), new Annotation("parent", "00000000-0000-0000-0000-00000012d687"), new Annotation("application", "Jaeger"), new Annotation("cluster", "none"), new Annotation("shard", "none"))).build());
expectLastCall();
replay(mockTraceHandler, mockTraceLogsHandler);
JaegerTChannelCollectorHandler handler = new JaegerTChannelCollectorHandler("9876", mockTraceHandler, mockTraceLogsHandler, null, () -> false, () -> false, null, new SpanSampler(new RateSampler(1.0D), () -> null), null, null);
Tag ipTag = new Tag("ip", TagType.STRING);
ipTag.setVStr("10.0.0.1");
Tag hostNameProcessTag = new Tag("hostname", TagType.STRING);
hostNameProcessTag.setVStr("hostname-processtag");
Tag customProcessTag1 = new Tag("processTag1", TagType.STRING);
customProcessTag1.setVStr("one");
Tag customProcessTag2 = new Tag("processTag2", TagType.STRING);
customProcessTag2.setVStr("two");
Tag customProcessTag3 = new Tag("processTag3", TagType.STRING);
customProcessTag3.setVStr("three");
Tag customSourceSpanTag = new Tag("source", TagType.STRING);
customSourceSpanTag.setVStr("source-spantag");
io.jaegertracing.thriftjava.Span span = new io.jaegertracing.thriftjava.Span(1234567890123L, 1234567890L, 2345678L, 1234567L, "HTTP GET /", 1, startTime * 1000, 9 * 1000);
span.setTags(ImmutableList.of(customSourceSpanTag));
Batch testBatch = new Batch();
testBatch.process = new Process();
testBatch.process.serviceName = "frontend";
testBatch.process.setTags(ImmutableList.of(ipTag, hostNameProcessTag, customProcessTag1, customProcessTag2, customProcessTag3));
testBatch.setSpans(ImmutableList.of(span));
Collector.submitBatches_args batches = new Collector.submitBatches_args();
batches.addToBatches(testBatch);
ThriftRequest<Collector.submitBatches_args> request = new ThriftRequest.Builder<Collector.submitBatches_args>("jaeger-collector", "Collector::submitBatches").setBody(batches).build();
handler.handleImpl(request);
verify(mockTraceHandler, mockTraceLogsHandler);
}
Aggregations