4 writes to Kind
Aspire.Dashboard (2)
Otlp\Model\OtlpSpan.cs (1)
88Kind = item.Kind,
Otlp\Storage\TelemetryRepository.cs (1)
1263Kind = ConvertSpanKind(span.Kind),
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
316Kind = kind,
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
316Kind = kind,
11 references to Kind
Aspire.Dashboard (11)
Components_Pages_TraceDetail_razor.g.cs (2)
1441var isServerOrConsumer = context.Span.Kind == OtlpSpanKind.Server || context.Span.Kind == OtlpSpanKind.Consumer;
Model\Assistant\AIHelpers.cs (1)
49kind = s.Kind.ToString(),
Model\Otlp\SpanWaterfallViewModel.cs (1)
162var isUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();
Model\TraceHelpers.cs (1)
130switch (span.Kind)
Otlp\Model\OtlpSpan.cs (5)
88Kind = item.Kind, 108new OtlpDisplayField { DisplayName = "Kind", Key = KnownTraceFields.KindField, Value = Kind.ToString() }, 150if (childSpan.Source.ResourceKey != Source.ResourceKey && childSpan.Kind is OtlpSpanKind.Server or OtlpSpanKind.Consumer) 174if (span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer or OtlpSpanKind.Consumer) 237KnownTraceFields.KindField => span.Kind.ToString(),
Otlp\Storage\TelemetryRepository.cs (1)
1146var hasUninstrumentedPeer = hasPeerService && span.Kind is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();