5 writes to Kind
Aspire.Dashboard (3)
Otlp\Model\OtlpSpan.cs (1)
90
Kind
= item.Kind,
Otlp\Storage\SqliteTelemetryRepository.Traces.Reads.cs (1)
793
Kind
= (OtlpSpanKind)record.Kind,
Otlp\Storage\SqliteTelemetryRepository.Traces.Writes.cs (1)
931
Kind
= OtlpHelpers.ConvertSpanKind(span.Kind),
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
277
Kind
= kind,
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
277
Kind
= kind,
11 references to Kind
Aspire.Dashboard (10)
Model\Otlp\SpanWaterfallViewModel.cs (1)
104
var isUninstrumentedPeer = hasPeerService && span.
Kind
is OtlpSpanKind.Client or OtlpSpanKind.Producer && !span.GetChildSpans().Any();
Model\TelemetryExportService.cs (1)
393
Kind = (int)span.
Kind
,
Model\TraceHelpers.cs (1)
131
switch (span.
Kind
)
Otlp\Model\OtlpSpan.cs (5)
90
Kind = item.
Kind
,
110
new OtlpDisplayField { DisplayName = "Kind", Key = KnownTraceFields.KindField, Value =
Kind
.ToString() },
152
if (childSpan.Source.ResourceKey != Source.ResourceKey && childSpan.
Kind
is OtlpSpanKind.Server or OtlpSpanKind.Consumer)
176
if (span.
Kind
is OtlpSpanKind.Client or OtlpSpanKind.Producer or OtlpSpanKind.Consumer)
239
KnownTraceFields.KindField => span.
Kind
.ToString(),
Otlp\Storage\SqliteTelemetryRepository.Traces.Writes.cs (2)
514
parameters[8].Value = (int)span.
Kind
;
562
if (hasPeerAddress && span.
Kind
is OtlpSpanKind.Client or OtlpSpanKind.Producer && !hasChildren)
Aspire.Dashboard.Tests (1)
Integration\OtlpHttpJsonTests.cs (1)
544
Assert.Equal(Aspire.Dashboard.Otlp.Model.OtlpSpanKind.Server, span.
Kind
);