4 writes to Kind
Aspire.Dashboard (2)
Otlp\Model\OtlpSpan.cs (1)
81Kind = item.Kind,
Otlp\Storage\TelemetryRepository.cs (1)
1191Kind = ConvertSpanKind(span.Kind),
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
314Kind = kind,
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
314Kind = kind,
8 references to Kind
Aspire.Dashboard (8)
Components\Pages\TraceDetail.razor.cs (2)
139switch (span.Kind) 153throw new InvalidOperationException($"Unsupported span kind when resolving icon: {span.Kind}");
Model\Otlp\SpanWaterfallViewModel.cs (1)
148var isUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();
Otlp\Model\OtlpSpan.cs (4)
81Kind = item.Kind, 101new OtlpDisplayField { DisplayName = "Kind", Key = KnownTraceFields.KindField, Value = Kind.ToString() }, 136if (span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer or OtlpSpanKind.Consumer) 195KnownTraceFields.KindField => span.Kind.ToString(),
Otlp\Storage\TelemetryRepository.cs (1)
1074var hasUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();