Inline annotations

This commit is contained in:
Anuraag Agrawal 2021-01-31 11:28:32 +09:00
parent ca482b7e68
commit 8facc4ddbe
2 changed files with 8 additions and 11 deletions

View File

@ -48,10 +48,6 @@ public class ZipkinSpanExporterEndToEndHttpTest {
private static final long RECEIVED_TIMESTAMP_NANOS = 1505855799_433901068L;
private static final long SENT_TIMESTAMP_NANOS = 1505855799_459486280L;
private static final Attributes attributes = Attributes.empty();
private static final List<EventData> annotations =
Arrays.asList(
EventData.create(RECEIVED_TIMESTAMP_NANOS, "RECEIVED", Attributes.empty()),
EventData.create(SENT_TIMESTAMP_NANOS, "SENT", Attributes.empty()));
private static final String ENDPOINT_V1_SPANS = "/api/v1/spans";
private static final String ENDPOINT_V2_SPANS = "/api/v2/spans";
@ -147,7 +143,10 @@ public class ZipkinSpanExporterEndToEndHttpTest {
.setStartEpochNanos(START_EPOCH_NANOS)
.setAttributes(attributes)
.setTotalAttributeCount(attributes.size())
.setEvents(annotations)
.setEvents(
Arrays.asList(
EventData.create(RECEIVED_TIMESTAMP_NANOS, "RECEIVED", Attributes.empty()),
EventData.create(SENT_TIMESTAMP_NANOS, "SENT", Attributes.empty())))
.setLinks(Collections.emptyList())
.setEndEpochNanos(END_EPOCH_NANOS)
.setHasEnded(true)

View File

@ -37,7 +37,6 @@ import io.opentelemetry.semconv.trace.attributes.SemanticAttributes;
import java.io.IOException;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.Mock;
@ -60,10 +59,6 @@ class ZipkinSpanExporterTest {
private static final String SPAN_ID = "9cc1e3049173be09";
private static final String PARENT_SPAN_ID = "8b03ab423da481c5";
private static final Attributes attributes = Attributes.empty();
private static final List<EventData> annotations =
Arrays.asList(
EventData.create(1505855799_433901068L, "RECEIVED", Attributes.empty()),
EventData.create(1505855799_459486280L, "SENT", Attributes.empty()));
private final ZipkinSpanExporter exporter = ZipkinSpanExporter.builder().build();
@ -380,7 +375,10 @@ class ZipkinSpanExporterTest {
.setEndEpochNanos(1505855799_465726528L)
.setAttributes(attributes)
.setTotalAttributeCount(attributes.size())
.setEvents(annotations)
.setEvents(
Arrays.asList(
EventData.create(1505855799_433901068L, "RECEIVED", Attributes.empty()),
EventData.create(1505855799_459486280L, "SENT", Attributes.empty())))
.setLinks(Collections.emptyList())
.setHasEnded(true);
}