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