5 writes to TraceId
Aspire.Dashboard (3)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
1539
TraceId
= other.TraceId;
1689
TraceId
= input.ReadBytes();
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (1)
116
span.
TraceId
= HexToByteString(json.TraceId);
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
160
TraceId
= ByteString.CopyFrom(Encoding.UTF8.GetBytes(traceId)),
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
160
TraceId
= 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)
1297
if (
TraceId
!= other.
TraceId
) return false;
1320
if (
TraceId
.Length != 0) hash ^=
TraceId
.GetHashCode();
1419
if (
TraceId
.Length != 0) {
1421
output.WriteBytes(
TraceId
);
1484
if (
TraceId
.Length != 0) {
1485
size += 1 + pb::CodedOutputStream.ComputeBytesSize(
TraceId
);
1538
if (other.
TraceId
.Length != 0) {
1539
TraceId = other.
TraceId
;
Otlp\Storage\TelemetryRepository.cs (3)
1027
if (!updatedTraces.TryGetValue(span.
TraceId
.Memory, out trace))
1029
if (!TryGetTraceById(_traces, span.
TraceId
.Memory, out trace))
1031
trace = new OtlpTrace(span.
TraceId
.Memory, DateTime.UtcNow);