use of io.opencensus.proto.trace.v1.Span in project zipkin by openzipkin.
the class InMemoryStorageTest method getSpanNames_skipsNullSpanName.
@Test
public void getSpanNames_skipsNullSpanName() throws IOException {
Span span1 = Span.newBuilder().traceId("1").id("1").name("root").localEndpoint(Endpoint.newBuilder().serviceName("app").build()).timestamp(TODAY * 1000).build();
Span span2 = Span.newBuilder().traceId("1").parentId("1").id("2").localEndpoint(Endpoint.newBuilder().serviceName("app").build()).timestamp(TODAY * 1000).build();
storage.accept(asList(span1, span2)).execute();
assertThat(storage.getSpanNames("app").execute()).containsOnly("root");
}
use of io.opencensus.proto.trace.v1.Span in project zipkin by openzipkin.
the class InMemoryStorageTest method getTagsAndThenValues.
@Test
public void getTagsAndThenValues() throws IOException {
Span span1 = Span.newBuilder().traceId("1").id("1").name("root").localEndpoint(Endpoint.newBuilder().serviceName("app").build()).putTag("environment", "dev").putTag("http.method", "GET").timestamp(TODAY * 1000).build();
Span span2 = Span.newBuilder().traceId("1").parentId("1").id("2").localEndpoint(Endpoint.newBuilder().serviceName("app").build()).putTag("environment", "dev").putTag("http.method", "POST").putTag("http.path", "/users").timestamp(TODAY * 1000).build();
Span span3 = Span.newBuilder().traceId("2").id("3").name("root").localEndpoint(Endpoint.newBuilder().serviceName("app").build()).putTag("environment", "dev").putTag("http.method", "GET").timestamp(TODAY * 1000).build();
Span span4 = Span.newBuilder().traceId("2").parentId("3").id("4").localEndpoint(Endpoint.newBuilder().serviceName("app").build()).putTag("environment", "dev").putTag("http.method", "POST").putTag("http.path", "/users").timestamp(TODAY * 1000).build();
storage.accept(asList(span1, span2, span3, span4)).execute();
assertThat(storage.getKeys().execute()).containsOnlyOnce("http.path");
assertThat(storage.getValues("http.path").execute()).containsOnlyOnce("/users");
}
use of io.opencensus.proto.trace.v1.Span in project zipkin by openzipkin.
the class SpanNodeTest method build_headless.
@Test
public void build_headless() {
Span s2 = Span.newBuilder().traceId("a").parentId("a").id("b").name("s2").build();
Span s3 = Span.newBuilder().traceId("a").parentId("a").id("c").name("s3").build();
Span s4 = Span.newBuilder().traceId("a").parentId("a").id("d").name("s4").build();
SpanNode root = new SpanNode.Builder(logger).build(asList(s2, s3, s4));
assertThat(root.span()).isNull();
assertThat(root.children()).extracting(SpanNode::span).containsExactly(s2, s3, s4);
assertThat(messages).containsExactly("building trace tree: traceId=000000000000000a", "substituting dummy node for missing root span: traceId=000000000000000a");
}
use of io.opencensus.proto.trace.v1.Span in project zipkin by openzipkin.
the class SpanNodeTest method build_noChildLeftBehind.
@Test
public void build_noChildLeftBehind() {
List<Span> spans = asList(Span.newBuilder().traceId("a").id("b").name("root-0").build(), Span.newBuilder().traceId("a").parentId("b").id("c").name("child-0").build(), Span.newBuilder().traceId("a").parentId("b").id("d").name("child-1").build(), Span.newBuilder().traceId("a").id("e").name("lost-0").build(), Span.newBuilder().traceId("a").id("f").name("lost-1").build());
int treeSize = 0;
SpanNode tree = new SpanNode.Builder(logger).build(spans);
Iterator<SpanNode> iter = tree.traverse();
while (iter.hasNext()) {
iter.next();
treeSize++;
}
assertThat(treeSize).isEqualTo(spans.size());
assertThat(messages).containsExactly("building trace tree: traceId=000000000000000a", "attributing span missing parent to root: traceId=000000000000000a, rootSpanId=000000000000000b, spanId=000000000000000e", "attributing span missing parent to root: traceId=000000000000000a, rootSpanId=000000000000000b, spanId=000000000000000f");
}
use of io.opencensus.proto.trace.v1.Span in project zipkin by openzipkin.
the class V1JsonSpanWriterTest method writesEmptyServiceName.
@Test
public void writesEmptyServiceName() {
Span span = CLIENT_SPAN.toBuilder().localEndpoint(Endpoint.newBuilder().ip("127.0.0.1").build()).build();
writer.write(span, buf);
assertThat(new String(bytes, UTF_8)).contains("\"value\":\"foo\",\"endpoint\":{\"serviceName\":\"\",\"ipv4\":\"127.0.0.1\"}");
}
Aggregations