4 writes to SpanId
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
1443SpanId = other.SpanId; 1587SpanId = input.ReadBytes();
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
161SpanId = ByteString.CopyFrom(Encoding.UTF8.GetBytes(spanId)),
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
161SpanId = ByteString.CopyFrom(Encoding.UTF8.GetBytes(spanId)),
11 references to SpanId
Aspire.Dashboard (11)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (10)
1212if (SpanId != other.SpanId) return false; 1234if (SpanId.Length != 0) hash ^= SpanId.GetHashCode(); 1331if (SpanId.Length != 0) { 1333output.WriteBytes(SpanId); 1391if (SpanId.Length != 0) { 1392size += 1 + pb::CodedOutputStream.ComputeBytesSize(SpanId); 1442if (other.SpanId.Length != 0) { 1443SpanId = other.SpanId;
Otlp\Storage\TelemetryRepository.cs (1)
1165var id = span.SpanId?.ToHexString();