3 writes to UninstrumentedPeer
Aspire.Dashboard (3)
Otlp\Model\OtlpSpan.cs (1)
91
UninstrumentedPeer
= item.UninstrumentedPeer
Otlp\Storage\TelemetryRepository.cs (2)
1087
span.
UninstrumentedPeer
= app;
1091
span.
UninstrumentedPeer
= null;
17 references to UninstrumentedPeer
Aspire.Dashboard (9)
Components\Pages\TraceDetail.razor.cs (2)
206
if (span.
UninstrumentedPeer
!= null)
208
apps.Add(span.
UninstrumentedPeer
);
Model\Otlp\SpanWaterfallViewModel.cs (1)
178
if (span.
UninstrumentedPeer
?.ApplicationName is { } peerName)
Model\TraceHelpers.cs (1)
57
if (span.
UninstrumentedPeer
is { } peer)
Otlp\Model\OtlpSpan.cs (3)
91
UninstrumentedPeer = item.
UninstrumentedPeer
124
return $@"SpanId = {SpanId}, StartTime = {StartTime.ToLocalTime():h:mm:ss.fff tt}, ParentSpanId = {ParentSpanId}, Application = {Source.ApplicationKey}, UninstrumentedPeerApplication = {
UninstrumentedPeer
?.ApplicationKey}, TraceId = {Trace.TraceId}";
192
KnownResourceFields.ServiceNameField => new FieldValues(span.Source.Application.ApplicationName, span.
UninstrumentedPeer
?.ApplicationName),
Otlp\Storage\TelemetryRepository.cs (2)
589
if (span.Source.ApplicationKey == applicationKey || span.
UninstrumentedPeer
?.ApplicationKey == applicationKey)
1079
if (span.
UninstrumentedPeer
?.ApplicationKey.EqualsCompositeName(uninstrumentedPeer.Name) ?? false)
Aspire.Dashboard.Tests (8)
TelemetryRepositoryTests\TraceTests.cs (8)
1994
Assert.Null(s.
UninstrumentedPeer
);
1999
Assert.NotNull(s.
UninstrumentedPeer
);
2000
Assert.Equal("TestPeer", s.
UninstrumentedPeer
.ApplicationName);
2073
Assert.Null(s.
UninstrumentedPeer
);
2078
Assert.Null(s.
UninstrumentedPeer
);
2115
Assert.Null(s.
UninstrumentedPeer
);
2120
Assert.NotNull(s.
UninstrumentedPeer
);
2121
Assert.Equal("TestPeer", s.
UninstrumentedPeer
.ApplicationName);