10 references to OtlpSpanStatusCode
Aspire.Dashboard (8)
Model\Otlp\SpanWaterfallViewModel.cs (1)
22
public bool IsError => Span.Status ==
OtlpSpanStatusCode
.Error;
Model\TraceHelpers.cs (2)
63
if (span.Status ==
OtlpSpanStatusCode
.Error)
74
new OrderedApplication(span.Source.Application, appFirstTimes.Count, currentMinDate.Value, totalSpans: 1, erroredSpans: span.Status ==
OtlpSpanStatusCode
.Error ? 1 : 0));
Otlp\Storage\TelemetryRepository.cs (5)
745
private static
OtlpSpanStatusCode
ConvertStatus(Status? status)
749
Status.Types.StatusCode.Ok =>
OtlpSpanStatusCode
.Ok,
750
Status.Types.StatusCode.Error =>
OtlpSpanStatusCode
.Error,
751
Status.Types.StatusCode.Unset =>
OtlpSpanStatusCode
.Unset,
752
_ =>
OtlpSpanStatusCode
.Unset
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
304
Status =
OtlpSpanStatusCode
.Unset,
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
304
Status =
OtlpSpanStatusCode
.Unset,