1 write to SourceSpanId
Aspire.Dashboard (1)
Otlp\Storage\TelemetryRepository.cs (1)
1249SourceSpanId = id,
7 references to SourceSpanId
Aspire.Dashboard (3)
Model\Assistant\AIHelpers.cs (1)
59back_links = s.BackLinks.Select(l => new { source_trace_id = OtlpHelpers.ToShortenedId(l.SourceTraceId), source_span_id = OtlpHelpers.ToShortenedId(l.SourceSpanId) }).ToList()
Model\SpanDetailsViewModel.cs (1)
43var backlinks = span.BackLinks.Select(l => CreateLinkViewModel(l.SourceTraceId, l.SourceSpanId, l.Attributes, telemetryRepository, traceCache)).ToList();
Otlp\Storage\TelemetryRepository.cs (1)
1227sb.AppendLine(CultureInfo.InvariantCulture, $"\tSource span ID: {link.SourceSpanId}, Target span ID: {link.SpanId}");
Aspire.Dashboard.Tests (4)
TelemetryRepositoryTests\TraceTests.cs (4)
882AssertId("1-1", link.SourceSpanId); 886AssertId("1-2", backLink.SourceSpanId); 892AssertId("1-2", link.SourceSpanId); 896AssertId("1-1", backLink.SourceSpanId);