19 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)
514dataPoint.StartTimeUnixNano = json.StartTimeUnixNano.Value;
Aspire.Dashboard.Components.Tests (3)
Controls\PlotlyChartTests.cs (1)
81StartTimeUnixNano = 0,
Pages\MetricsTests.cs (1)
261metric.Sum.DataPoints.Single().StartTimeUnixNano = 0;
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
117StartTimeUnixNano = DateTimeToUnixNanoseconds(startTime),
Aspire.Dashboard.Tests (13)
ChartDataCalculatorTests.cs (11)
107StartTimeUnixNano = ToNanos(start), 128StartTimeUnixNano = ToNanos(metricStart), 154StartTimeUnixNano = ToNanos(start), 161StartTimeUnixNano = ToNanos(start), 184StartTimeUnixNano = ToNanos(start), 190StartTimeUnixNano = ToNanos(start), 216StartTimeUnixNano = ToNanos(start), 223StartTimeUnixNano = ToNanos(start.AddSeconds(5)), 243StartTimeUnixNano = 0, 274StartTimeUnixNano = 0, 426StartTimeUnixNano = 0,
TelemetryRepositoryTests\MetricsTests.cs (1)
1204StartTimeUnixNano = timestamp,
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
117StartTimeUnixNano = DateTimeToUnixNanoseconds(startTime),
11 references to StartTimeUnixNano
Aspire.Dashboard (11)
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)
35var start = OtlpHelpers.UnixNanoSecondsToDateTime(d.StartTimeUnixNano);
Otlp\Storage\SqliteTelemetryRepository.Metrics.Writes.cs (1)
212var start = OtlpHelpers.UnixNanoSecondsToDateTime(point.StartTimeUnixNano);