3 writes to StartTimeUnixNano
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
403StartTimeUnixNano = OtlpHelpers.DateTimeToUnixNanoseconds(span.StartTime),
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
199Setter = static (obj, value) => ((global::Aspire.Otlp.Serialization.OtlpSpanJson)obj).StartTimeUnixNano = value!,
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
501StartTimeUnixNano = timeUnixNano,
7 references to StartTimeUnixNano
Aspire.Dashboard (6)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
143if (json.StartTimeUnixNano.HasValue) 145span.StartTimeUnixNano = json.StartTimeUnixNano.Value;
OtlpJsonSerializerContext.OtlpSpanJson.g.cs (1)
198Getter = static obj => ((global::Aspire.Otlp.Serialization.OtlpSpanJson)obj).StartTimeUnixNano,
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);