Table of Contents

Enum SpanStatus

Namespace
DotCompute.Core.Telemetry.Enums
Assembly
DotCompute.Core.dll

Defines the possible status values for a span execution. Indicates the success or failure state of the tracked operation.

public enum SpanStatus

Fields

Cancelled = 3

The operation was cancelled before completion.

Error = 1

The operation encountered an error and failed to complete.

Ok = 0

The operation completed successfully without errors.

Timeout = 2

The operation exceeded the configured timeout period.