4 writes to TraceId
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
1440TraceId = other.TraceId; 1583TraceId = input.ReadBytes();
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
160TraceId = ByteString.CopyFrom(Encoding.UTF8.GetBytes(traceId)),
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
160TraceId = ByteString.CopyFrom(Encoding.UTF8.GetBytes(traceId)),
13 references to TraceId
Aspire.Dashboard (13)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (10)
1211if (TraceId != other.TraceId) return false; 1233if (TraceId.Length != 0) hash ^= TraceId.GetHashCode(); 1327if (TraceId.Length != 0) { 1329output.WriteBytes(TraceId); 1388if (TraceId.Length != 0) { 1389size += 1 + pb::CodedOutputStream.ComputeBytesSize(TraceId); 1439if (other.TraceId.Length != 0) { 1440TraceId = other.TraceId;
Otlp\Storage\TelemetryRepository.cs (3)
933if (!updatedTraces.TryGetValue(span.TraceId.Memory, out trace)) 935if (!TryGetTraceById(_traces, span.TraceId.Memory, out trace)) 937trace = new OtlpTrace(span.TraceId.Memory);