3 writes to InternalId
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.Logs.cs (1)
388InternalId = record.InternalId!.Value,
Aspire.Dashboard.Tests (2)
Model\SpanWaterfallViewModelTests.cs (1)
54InternalId = 1,
Model\TraceDetailPageViewModelTests.cs (1)
112InternalId = logEntry.InternalId,
9 references to InternalId
Aspire.Dashboard (8)
Components\Pages\StructuredLogs.razor.cs (3)
310var entry = TelemetryRepository.GetLog(summary.InternalId); 406if (entry.InternalId == PageViewModel.SelectedLogEntry?.LogEntry.InternalId) 555logEntry.InternalId,
Components\Pages\TraceDetail.razor.cs (4)
380else if (PageViewModel.SelectedData?.LogEntryViewModel is { } selectedLog && viewModel.SpanLogs.Any(l => l.LogEntry.InternalId == selectedLog.LogEntry.InternalId)) 518if (PageViewModel.SelectedData?.LogEntryViewModel?.LogEntry.InternalId == logEntry.InternalId) 524if (TelemetryRepository.GetLog(logEntry.InternalId) is { } fullLogEntry) 772return !visibleSpans.Any(vm => vm.SpanLogs.Any(l => l.LogEntry.InternalId == logVm.LogEntry.InternalId));
Model\StructuredLogMenuBuilder.cs (1)
74AddMenuItems(menuItems, summary.Message, () => _dataSource.TelemetryRepository.GetLog(summary.InternalId), onViewDetails, showViewDetails);
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\LogTests.cs (1)
194Assert.Equal(log.InternalId, summary.InternalId);