3 implementations of TryResolvePeer
Aspire.Dashboard (2)
Model\BrowserLinkOutgoingPeerResolver.cs (1)
22
public bool
TryResolvePeer
(KeyValuePair<string, string>[] attributes, out string? name, out ResourceViewModel? matchedResource)
Model\ResourceOutgoingPeerResolver.cs (1)
97
public bool
TryResolvePeer
(KeyValuePair<string, string>[] attributes, out string? name, out ResourceViewModel? matchedResource)
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\TestOutgoingPeerResolver.cs (1)
38
public bool
TryResolvePeer
(KeyValuePair<string, string>[] attributes, out string? name, out ResourceViewModel? matchedResourced)
3 references to TryResolvePeer
Aspire.Dashboard (2)
Model\Otlp\SpanWaterfallViewModel.cs (1)
188
if (resolver.
TryResolvePeer
(span.Attributes, out var name, out _))
Otlp\Storage\TelemetryRepository.cs (1)
1101
if (resolver.
TryResolvePeer
(span.Attributes, out _, out var matchedResourced))
Aspire.Dashboard.Tests (1)
BrowserLinkOutgoingPeerResolverTests.cs (1)
116
return resolver.
TryResolvePeer
(attributes, out peerName, out _);