@microsoft/opentelemetry
    Preparing search index...

    Interface ParentSpanRef

    Manual parent span reference for cross-async-boundary tracing.

    interface ParentSpanRef {
        isRemote?: boolean;
        spanId: string;
        traceFlags?: number;
        traceId: string;
        traceState?: TraceState;
    }
    Index
    isRemote?: boolean

    Whether the parent span originated on a remote system.

    spanId: string

    Span identifier of the parent span.

    traceFlags?: number

    Trace flags (e.g. sampled bit) of the parent span.

    traceId: string

    Trace identifier of the parent span.

    traceState?: TraceState

    W3C trace state carried from the parent span.