6 writes to TimeUnixNano
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
1926TimeUnixNano = other.TimeUnixNano; 1990TimeUnixNano = input.ReadFixed64();
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
143TimeUnixNano = (ulong)startTime
Aspire.Dashboard.Tests (3)
TelemetryRepositoryTests\TraceTests.cs (2)
540TimeUnixNano = 2, 549TimeUnixNano = 1,
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
143TimeUnixNano = (ulong)startTime
11 references to TimeUnixNano
Aspire.Dashboard (11)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (9)
1824if (TimeUnixNano != other.TimeUnixNano) return false; 1835if (TimeUnixNano != 0UL) hash ^= TimeUnixNano.GetHashCode(); 1880if (TimeUnixNano != 0UL) { 1882output.WriteFixed64(TimeUnixNano); 1903if (TimeUnixNano != 0UL) { 1925if (other.TimeUnixNano != 0UL) { 1926TimeUnixNano = other.TimeUnixNano;
Otlp\Storage\TelemetryRepository.cs (2)
1204foreach (var e in span.Events.OrderBy(e => e.TimeUnixNano)) 1210Time = OtlpHelpers.UnixNanoSecondsToDateTime(e.TimeUnixNano),