1 write to ParentSpanId
Aspire.Dashboard (1)
Model\TelemetryExportService.cs (1)
391
ParentSpanId
= string.IsNullOrEmpty(span.ParentSpanId) ? null : span.ParentSpanId,
5 references to ParentSpanId
Aspire.Dashboard (2)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
127
if (json.
ParentSpanId
is not null)
129
span.ParentSpanId = HexToByteString(json.
ParentSpanId
);
Aspire.Dashboard.Tests (3)
Model\TelemetryExportServiceTests.cs (3)
379
var parentSpan = spans.First(s => s.
ParentSpanId
is null);
380
var childSpan = spans.First(s => s.
ParentSpanId
is not null);
382
Assert.NotNull(childSpan.
ParentSpanId
);