4 writes to ParentSpanId
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
1449ParentSpanId = other.ParentSpanId; 1595ParentSpanId = input.ReadBytes();
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
162ParentSpanId = parentSpanId is null ? ByteString.Empty : ByteString.CopyFrom(Encoding.UTF8.GetBytes(parentSpanId)),
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
162ParentSpanId = parentSpanId is null ? ByteString.Empty : ByteString.CopyFrom(Encoding.UTF8.GetBytes(parentSpanId)),
11 references to ParentSpanId
Aspire.Dashboard (11)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (10)
1214if (ParentSpanId != other.ParentSpanId) return false; 1236if (ParentSpanId.Length != 0) hash ^= ParentSpanId.GetHashCode(); 1339if (ParentSpanId.Length != 0) { 1341output.WriteBytes(ParentSpanId); 1397if (ParentSpanId.Length != 0) { 1398size += 1 + pb::CodedOutputStream.ComputeBytesSize(ParentSpanId); 1448if (other.ParentSpanId.Length != 0) { 1449ParentSpanId = other.ParentSpanId;
Otlp\Storage\TelemetryRepository.cs (1)
1190ParentSpanId = span.ParentSpanId?.ToHexString(),