/external/opencensus-java/api/src/test/java/io/opencensus/trace/export/ |
D | SpanDataTest.java | 75 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/ |
D | RecordEventsSpanImplTest.java | 61 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/ |
D | RecordEventsSpanImpl.java | 63 @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()
|
D | SpanBuilderImpl.java | 73 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/ |
D | SpanData.java | 62 @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/ |
D | StackdriverV2ExporterHandlerProtoTest.java | 103 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/ |
D | SamplersTest.java | 44 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/ |
D | InstanaExporterHandler.java | 134 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/ |
D | TraceProtoUtils.java | 148 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/ |
D | InProcessSampledSpanStoreImplTest.java | 66 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/ |
D | TraceProtoUtilsTest.java | 104 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/ |
D | JaegerExporterHandlerTest.java | 96 assertThat(span.parentSpanId).isEqualTo(Long.MAX_VALUE); in exportShouldConvertFromSpanDataToJaegerThriftSpan()
|