6 writes to SpanId
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
2278SpanId = other.SpanId; 2350SpanId = input.ReadBytes();
Aspire.Dashboard.Tests (4)
TelemetryRepositoryTests\TraceTests.cs (4)
617SpanId = ByteString.CopyFrom(Encoding.UTF8.GetBytes("1-1")), 626SpanId = ByteString.CopyFrom(Encoding.UTF8.GetBytes("2-1")), 967SpanId = ByteString.CopyFrom(Encoding.UTF8.GetBytes($"{traceId}-2")), 976SpanId = ByteString.CopyFrom(Encoding.UTF8.GetBytes($"{traceId}-1")),
11 references to SpanId
Aspire.Dashboard (11)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (10)
2161if (SpanId != other.SpanId) return false; 2173if (SpanId.Length != 0) hash ^= SpanId.GetHashCode(); 2226if (SpanId.Length != 0) { 2228output.WriteBytes(SpanId); 2252if (SpanId.Length != 0) { 2253size += 1 + pb::CodedOutputStream.ComputeBytesSize(SpanId); 2277if (other.SpanId.Length != 0) { 2278SpanId = other.SpanId;
Otlp\Storage\TelemetryRepository.cs (1)
1181SpanId = e.SpanId.ToHexString(),