2 writes to StartTimeUnixNano
Aspire.Dashboard (1)
Model\TelemetryExportService.cs (1)
404StartTimeUnixNano = OtlpHelpers.DateTimeToUnixNanoseconds(span.StartTime),
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
501StartTimeUnixNano = timeUnixNano,
6 references to StartTimeUnixNano
Aspire.Dashboard (5)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
143if (json.StartTimeUnixNano.HasValue) 145span.StartTimeUnixNano = json.StartTimeUnixNano.Value;
src\Shared\ConsoleLogs\SharedAIHelpers.cs (3)
259["duration_ms"] = CalculateDurationMs(span.StartTimeUnixNano, span.EndTimeUnixNano), 270var timestamp = rootSpan?.Span.StartTimeUnixNano is { } startNano 409if (s.Span.StartTimeUnixNano is { } start)
Aspire.Dashboard.Tests (1)
Model\TelemetryExportServiceTests.cs (1)
321Assert.Equal(OtlpHelpers.DateTimeToUnixNanoseconds(s_testTime), span.StartTimeUnixNano);