1 instantiation of LogEntryKey
Aspire.Hosting (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
125return new(logEntry.Timestamp, logEntry.Content, logEntry.RawContent, logEntry.Type);
14 references to LogEntryKey
Aspire.Hosting (14)
ApplicationModel\ResourceLoggerService.cs (6)
746Dictionary<LogEntryKey, int>? existingLogCounts = null; 762IncrementCount(existingLogCounts, LogEntryKey.Create(existingEntry)); 770var key = LogEntryKey.Create(logEntry); 808static void IncrementCount(Dictionary<LogEntryKey, int> counts, LogEntryKey key)
Dcp\DcpResourceWatcher.cs (7)
720var counts = new Dictionary<LogEntryKey, int>(); 726var key = LogEntryKey.Create(logEntry); 779var key = LogEntryKey.Create(logEntry); 1090Dictionary<LogEntryKey, int> counts, 1096public Dictionary<LogEntryKey, int> Counts { get; } = counts;
src\Shared\ConsoleLogs\LogEntry.cs (1)
123public static LogEntryKey Create(LogEntry logEntry)