4 references to Error
Aspire.Dashboard (4)
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 (1)
750
Status.Types.StatusCode.Error => OtlpSpanStatusCode.
Error
,