6 writes to StartTimeUnixNano
Aspire.Dashboard (3)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\metrics\v1\Metrics.cs (2)
3261StartTimeUnixNano = other.StartTimeUnixNano; 3346StartTimeUnixNano = input.ReadFixed64();
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (1)
513dataPoint.StartTimeUnixNano = json.StartTimeUnixNano.Value;
Aspire.Dashboard.Components.Tests (2)
Controls\PlotlyChartTests.cs (1)
77StartTimeUnixNano = 0,
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
117StartTimeUnixNano = DateTimeToUnixNanoseconds(startTime),
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
117StartTimeUnixNano = DateTimeToUnixNanoseconds(startTime),
10 references to StartTimeUnixNano
Aspire.Dashboard (10)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\metrics\v1\Metrics.cs (9)
3126if (StartTimeUnixNano != other.StartTimeUnixNano) return false; 3141if (StartTimeUnixNano != 0UL) hash ^= StartTimeUnixNano.GetHashCode(); 3198if (StartTimeUnixNano != 0UL) { 3200output.WriteFixed64(StartTimeUnixNano); 3231if (StartTimeUnixNano != 0UL) { 3260if (other.StartTimeUnixNano != 0UL) { 3261StartTimeUnixNano = other.StartTimeUnixNano;
Otlp\Model\MetricValues\DimensionScope.cs (1)
34var start = OtlpHelpers.UnixNanoSecondsToDateTime(d.StartTimeUnixNano);