1 instantiation of OtlpSpanLink
Aspire.Dashboard (1)
Otlp\Storage\TelemetryRepository.cs (1)
1175links.Add(new OtlpSpanLink
14 references to OtlpSpanLink
Aspire.Dashboard (10)
Otlp\Model\OtlpSpan.cs (2)
39public required List<OtlpSpanLink> Links { get; init; } 40public required List<OtlpSpanLink> BackLinks { get; init; }
Otlp\Storage\TelemetryRepository.cs (8)
52private readonly List<OtlpSpanLink> _spanLinks = new(); 63internal List<OtlpSpanLink> SpanLinks => _spanLinks; 91foreach (var link in span.Links) 946foreach (var existingLink in _spanLinks) 955foreach (var link in newSpan.Links) 1138foreach (var link in span.Links) 1153foreach (var link in currentSpanLinks) 1172var links = new List<OtlpSpanLink>();
Aspire.Dashboard.Tests (4)
TelemetryRepositoryTests\TraceTests.cs (4)
880var link = Assert.Single(s.Links); 884var backLink = Assert.Single(s.BackLinks); 890var link = Assert.Single(s.Links); 894var backLink = Assert.Single(s.BackLinks);