10 instantiations of LogEntry
Aspire.Dashboard (1)
ConsoleLogs\LogParser.cs (1)
66var logEntry = new LogEntry
Aspire.Dashboard.Tests (9)
ConsoleLogsTests\LogEntriesTests.cs (9)
21logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 22logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 3); 23logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 2); 42logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 43logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 2); 44logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 3); 62logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 63logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 2); 64logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 3);
6 references to LogEntry
Aspire.Dashboard (6)
ConsoleLogs\LogEntries.cs (3)
12private readonly CircularBuffer<LogEntry> _logEntries = new(maximumEntryCount); 23public IList<LogEntry> GetEntries() => _logEntries; 25public void InsertSorted(LogEntry logEntry, int lineNumber)
ConsoleLogs\LogParser.cs (2)
16public LogEntry CreateLogEntry(string rawText, bool isErrorOutput) 66var logEntry = new LogEntry
Model\StructureLogsDetailsViewModel.cs (1)
10public required OtlpLogEntry LogEntry { get; init; }