3 writes to LastUpdatedDate
Aspire.Dashboard (3)
Otlp\Model\OtlpTrace.cs (3)
88LastUpdatedDate = DateTime.UtcNow; 140LastUpdatedDate = lastUpdatedDate; 181LastUpdatedDate = DateTime.UtcNow;
3 references to LastUpdatedDate
Aspire.Dashboard (3)
Otlp\Model\OtlpTrace.cs (1)
145var newTrace = new OtlpTrace(trace.Key, trace.LastUpdatedDate);
Otlp\Storage\SqliteTelemetryRepository.Traces.Reads.cs (1)
662return lastUpdatedTicks is null || lastUpdatedTicks.Value > trace.LastUpdatedDate.Ticks;
Otlp\Storage\SqliteTelemetryRepository.Traces.Writes.cs (1)
409var lastUpdatedTimestampTicks = Math.Max(trace.LastUpdatedDate.Ticks, latestReceivedTimestampTicks);