5 references to Producer
Aspire.Dashboard (4)
Model\Otlp\SpanWaterfallViewModel.cs (1)
148var isUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();
Otlp\Model\OtlpSpan.cs (1)
136if (span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer or OtlpSpanKind.Consumer)
Otlp\Storage\TelemetryRepository.cs (2)
902SpanKind.Producer => OtlpSpanKind.Producer, 1074var hasUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\TraceTests.cs (1)
29[InlineData(OtlpSpanKind.Producer, Span.Types.SpanKind.Producer)]