2 writes to StartTimeUnixNano
Aspire.Dashboard (1)
Model\TelemetryExportService.cs (1)
404
StartTimeUnixNano
= OtlpHelpers.DateTimeToUnixNanoseconds(span.StartTime),
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
501
StartTimeUnixNano
= timeUnixNano,
6 references to StartTimeUnixNano
Aspire.Dashboard (5)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
143
if (json.
StartTimeUnixNano
.HasValue)
145
span.StartTimeUnixNano = json.
StartTimeUnixNano
.Value;
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
);