3 references to GetChildSpans
Aspire.Dashboard (3)
Model\Otlp\SpanWaterfallViewModel.cs (1)
162var isUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();
Otlp\Model\OtlpSpan.cs (1)
148if (GetChildSpans().SingleOrNull() is { } childSpan)
Otlp\Storage\TelemetryRepository.cs (1)
1146var hasUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();