in tracer.php
$span = new Span(
TracerInfo::getTraceSpanId(),
$this->name,
new AnnotationBlock(
$this->endpoint,
$this->startTimestamp,
zipkin_timestamp(),
AnnotationBlock::SERVER
)
);
in span.php
$this->setIdentifier('parentId', $parentId, [TracerInfo::class, 'getTraceSpanId']);
when tracer type is backend, the tracer default span's id equal parentId.
Is it right ?