2 writes to ParentSpanId
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
238
ParentSpanId
= string.IsNullOrEmpty(span.ParentSpanId) ? null : span.ParentSpanId,
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
119
Setter = static (obj, value) => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpSpanJson)obj).
ParentSpanId
= value!,
6 references to ParentSpanId
Aspire.Dashboard (3)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
126
if (json.
ParentSpanId
is not null)
128
span.ParentSpanId = HexToByteString(json.
ParentSpanId
);
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
118
Getter = static obj => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpSpanJson)obj).
ParentSpanId
,
Aspire.Dashboard.Tests (3)
Model\TelemetryExportServiceTests.cs (3)
339
var parentSpan = spans.First(s => s.
ParentSpanId
is null);
340
var childSpan = spans.First(s => s.
ParentSpanId
is not null);
342
Assert.NotNull(childSpan.
ParentSpanId
);