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