2 writes to StartTimeUnixNano
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
241
StartTimeUnixNano
= OtlpHelpers.DateTimeToUnixNanoseconds(span.StartTime),
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
199
Setter = static (obj, value) => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpSpanJson)obj).
StartTimeUnixNano
= value!,
4 references to StartTimeUnixNano
Aspire.Dashboard (3)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
142
if (json.
StartTimeUnixNano
.HasValue)
144
span.StartTimeUnixNano = json.
StartTimeUnixNano
.Value;
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
198
Getter = static obj => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpSpanJson)obj).
StartTimeUnixNano
,
Aspire.Dashboard.Tests (1)
Model\TelemetryExportServiceTests.cs (1)
286
Assert.Equal(OtlpHelpers.DateTimeToUnixNanoseconds(s_testTime), span.
StartTimeUnixNano
);