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