2 writes to Timestamp
Aspire.Dashboard (2)
src\Shared\ConsoleLogs\LogEntry.cs (2)
30
Timestamp
= startTimestamp,
50
Timestamp
= timestamp,
16 references to Timestamp
Aspire.Dashboard (12)
Components\Pages\ConsoleLogs.razor.cs (2)
538
if (logEntry.
Timestamp
is not null && timestampFilterDate is not null && !(logEntry.
Timestamp
> timestampFilterDate))
src\Shared\ConsoleLogs\LogEntries.cs (10)
62
if (logEntry.
Timestamp
is null)
69
if (pauseVM.Contains(logEntry.
Timestamp
.Value))
85
Debug.Assert(logLine.
Timestamp
== null || logLine.
Timestamp
.Value.Kind == DateTimeKind.Utc, "Timestamp should always be UTC.");
100
if (entry.
Timestamp
is { } timestamp)
117
if (logEntry.
Timestamp
== null || logEntry.Type is LogEntryType.Pause)
131
if (current.
Timestamp
== null)
142
if (logEntry.
Timestamp
.Value >= current.
Timestamp
.Value)
220
if (_earliestTimestampIndex == null && logEntry.
Timestamp
!= null)
Aspire.Dashboard.Components.Tests (3)
Pages\ConsoleLogsTests.cs (3)
366
timeProvider.UtcNow = earliestEntry.
Timestamp
!.Value;
426
timeProvider.UtcNow = earliestEntry.
Timestamp
!.Value;
428
await consoleLogsManager.UpdateFiltersAsync(new ConsoleLogsFilters { FilterAllLogsDate = earliestEntry.
Timestamp
!.Value });
Aspire.Dashboard.Tests (1)
ConsoleLogsTests\LogEntriesTests.cs (1)
96
Assert.Null(entry.
Timestamp
);