2 writes to TraceId
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
200TraceId = string.IsNullOrEmpty(log.TraceId) ? null : log.TraceId,
OtlpJsonSerializerContext.OtlpLogRecordJson.g.cs (1)
219Setter = static (obj, value) => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpLogRecordJson)obj).TraceId = value!,
4 references to TraceId
Aspire.Dashboard (3)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
321if (json.TraceId is not null) 323logRecord.TraceId = HexToByteString(json.TraceId);
OtlpJsonSerializerContext.OtlpLogRecordJson.g.cs (1)
218Getter = static obj => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpLogRecordJson)obj).TraceId,
Aspire.Dashboard.Tests (1)
Model\TelemetryExportServiceTests.cs (1)
80Assert.Equal("61626364313233346162636431323334", logRecord.TraceId); // hex of UTF-8 bytes of "abcd1234abcd1234"