4 writes to Kind
Aspire.Dashboard (2)
Otlp\Model\OtlpSpan.cs (1)
87Kind = item.Kind,
Otlp\Storage\TelemetryRepository.cs (1)
1228Kind = ConvertSpanKind(span.Kind),
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
315Kind = kind,
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
315Kind = kind,
7 references to Kind
Aspire.Dashboard (7)
Model\Otlp\SpanWaterfallViewModel.cs (1)
152var isUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();
Model\TraceHelpers.cs (1)
113switch (span.Kind)
Otlp\Model\OtlpSpan.cs (4)
87Kind = item.Kind, 107new OtlpDisplayField { DisplayName = "Kind", Key = KnownTraceFields.KindField, Value = Kind.ToString() }, 142if (span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer or OtlpSpanKind.Consumer) 201KnownTraceFields.KindField => span.Kind.ToString(),
Otlp\Storage\TelemetryRepository.cs (1)
1111var hasUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();