3 writes to StartTimeUnixNano
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
403
StartTimeUnixNano
= OtlpHelpers.DateTimeToUnixNanoseconds(span.StartTime),
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
199
Setter = static (obj, value) => ((global::Aspire.Otlp.Serialization.OtlpSpanJson)obj).
StartTimeUnixNano
= value!,
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
501
StartTimeUnixNano
= timeUnixNano,
7 references to StartTimeUnixNano
Aspire.Dashboard (6)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
143
if (json.
StartTimeUnixNano
.HasValue)
145
span.StartTimeUnixNano = json.
StartTimeUnixNano
.Value;
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
198
Getter = static obj => ((global::Aspire.Otlp.Serialization.OtlpSpanJson)obj).
StartTimeUnixNano
,
src\Shared\ConsoleLogs\SharedAIHelpers.cs (3)
259
["duration_ms"] = CalculateDurationMs(span.
StartTimeUnixNano
, span.EndTimeUnixNano),
270
var timestamp = rootSpan?.Span.
StartTimeUnixNano
is { } startNano
409
if (s.Span.
StartTimeUnixNano
is { } start)
Aspire.Dashboard.Tests (1)
Model\TelemetryExportServiceTests.cs (1)
321
Assert.Equal(OtlpHelpers.DateTimeToUnixNanoseconds(s_testTime), span.
StartTimeUnixNano
);