4 writes to StartTimeUnixNano
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
1458StartTimeUnixNano = other.StartTimeUnixNano; 1607StartTimeUnixNano = input.ReadFixed64();
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
163StartTimeUnixNano = DateTimeToUnixNanoseconds(startTime),
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
163StartTimeUnixNano = DateTimeToUnixNanoseconds(startTime),
10 references to StartTimeUnixNano
Aspire.Dashboard (10)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (9)
1217if (StartTimeUnixNano != other.StartTimeUnixNano) return false; 1239if (StartTimeUnixNano != 0UL) hash ^= StartTimeUnixNano.GetHashCode(); 1351if (StartTimeUnixNano != 0UL) { 1353output.WriteFixed64(StartTimeUnixNano); 1406if (StartTimeUnixNano != 0UL) { 1457if (other.StartTimeUnixNano != 0UL) { 1458StartTimeUnixNano = other.StartTimeUnixNano;
Otlp\Storage\TelemetryRepository.cs (1)
1193StartTime = OtlpHelpers.UnixNanoSecondsToDateTime(span.StartTimeUnixNano),