Home
last modified time | relevance | path

Searched refs:parentSpanId (Results 1 – 12 of 12) sorted by relevance

/external/opencensus-java/api/src/test/java/io/opencensus/trace/export/
DSpanDataTest.java75 private final SpanId parentSpanId = SpanId.generateRandomId(random); field in SpanDataTest
114 parentSpanId, in spanData_AllValues()
127 assertThat(spanData.getParentSpanId()).isEqualTo(parentSpanId); in spanData_AllValues()
147 parentSpanId, in spanData_Create_Compatibility()
160 assertThat(spanData.getParentSpanId()).isEqualTo(parentSpanId); in spanData_Create_Compatibility()
211 parentSpanId, in spanData_AllDataEmpty()
224 assertThat(spanData.getParentSpanId()).isEqualTo(parentSpanId); in spanData_AllDataEmpty()
243 parentSpanId, in spanDataEquals()
258 parentSpanId, in spanDataEquals()
273 parentSpanId, in spanDataEquals()
[all …]
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/trace/
DRecordEventsSpanImplTest.java61 private final SpanId parentSpanId = SpanId.generateRandomId(random); field in RecordEventsSpanImplTest
91 parentSpanId, in noEventsRecordedAfterEnd()
126 parentSpanId, in deprecatedAddAttributesStillWorks()
145 parentSpanId, in toSpanData_ActiveSpan()
170 assertThat(spanData.getParentSpanId()).isEqualTo(parentSpanId); in toSpanData_ActiveSpan()
204 parentSpanId, in toSpanData_EndedSpan()
231 assertThat(spanData.getParentSpanId()).isEqualTo(parentSpanId); in toSpanData_EndedSpan()
265 parentSpanId, in status_ViaSetStatus()
287 parentSpanId, in status_ViaEndSpanOptions()
312 parentSpanId, in droppingAttributes()
[all …]
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/trace/
DRecordEventsSpanImpl.java63 @Nullable private final SpanId parentSpanId; field in RecordEventsSpanImpl
136 @Nullable SpanId parentSpanId, in startSpan() argument
147 parentSpanId, in startSpan()
258 parentSpanId, in toSpanData()
559 @Nullable SpanId parentSpanId, in RecordEventsSpanImpl() argument
566 this.parentSpanId = parentSpanId; in RecordEventsSpanImpl()
DSpanBuilderImpl.java73 SpanId parentSpanId = null; in startSpanInternal() local
84 parentSpanId = parent.getSpanId(); in startSpanInternal()
105 parentSpanId, in startSpanInternal()
/external/opencensus-java/api/src/main/java/io/opencensus/trace/export/
DSpanData.java62 @Nullable SpanId parentSpanId, in create() argument
75 parentSpanId, in create()
116 @Nullable SpanId parentSpanId, in create() argument
148 parentSpanId, in create()
/external/opencensus-java/exporters/trace/stackdriver/src/test/java/io/opencensus/exporter/trace/stackdriver/
DStackdriverV2ExporterHandlerProtoTest.java103 private static final SpanId parentSpanId = SpanId.fromLowerBase16(PARENT_SPAN_ID); field in StackdriverV2ExporterHandlerProtoTest
191 parentSpanId, in generateSpan()
344 parentSpanId, in generateSpan_WithResourceLabels()
381 parentSpanId, in mapHttpAttributes()
411 parentSpanId, in generateSpanName_ForServer()
432 parentSpanId, in generateSpanName_ForServerWithRecv()
453 parentSpanId, in generateSpanName_ForClient()
474 parentSpanId, in generateSpanName_ForClientWithSent()
/external/opencensus-java/api/src/test/java/io/opencensus/trace/samplers/
DSamplersTest.java44 private final SpanId parentSpanId = SpanId.generateRandomId(random); field in SamplersTest
47 SpanContext.create(traceId, parentSpanId, TraceOptions.builder().setIsSampled(true).build());
49 SpanContext.create(traceId, parentSpanId, TraceOptions.DEFAULT);
/external/opencensus-java/exporters/trace/instana/src/main/java/io/opencensus/exporter/trace/instana/
DInstanaExporterHandler.java134 final SpanId parentSpanId = span.getParentSpanId(); in convertToJson() local
147 if (parentSpanId != null) { in convertToJson()
148 sb.append("\"parentId\":\"").append(encodeSpanId(parentSpanId)).append("\","); in convertToJson()
/external/opencensus-java/exporters/trace/ocagent/src/main/java/io/opencensus/exporter/trace/ocagent/
DTraceProtoUtils.java148 SpanId parentSpanId = spanData.getParentSpanId(); in toSpanProto() local
149 if (parentSpanId != null && parentSpanId.isValid()) { in toSpanProto()
150 spanBuilder.setParentSpanId(toByteString(parentSpanId.getBytes())); in toSpanProto()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/trace/export/
DInProcessSampledSpanStoreImplTest.java66 private final SpanId parentSpanId = SpanId.generateRandomId(random); field in InProcessSampledSpanStoreImplTest
93 parentSpanId, in createSampledSpan()
106 parentSpanId, in createNotSampledSpan()
/external/opencensus-java/exporters/trace/ocagent/src/test/java/io/opencensus/exporter/trace/ocagent/
DTraceProtoUtilsTest.java104 private static final SpanId parentSpanId = SpanId.fromLowerBase16(PARENT_SPAN_ID); field in TraceProtoUtilsTest
150 parentSpanId, in toSpanProto()
247 assertThat(span.getParentSpanId()).isEqualTo(toByteString(parentSpanId.getBytes())); in toSpanProto()
/external/opencensus-java/exporters/trace/jaeger/src/test/java/io/opencensus/exporter/trace/jaeger/
DJaegerExporterHandlerTest.java96 assertThat(span.parentSpanId).isEqualTo(Long.MAX_VALUE); in exportShouldConvertFromSpanDataToJaegerThriftSpan()