Beignet API reference
    Preparing search index...

    Interface TraceContext

    Trace context used to correlate related activity.

    interface TraceContext {
        parentSpanId?: string;
        spanId: string;
        traceId: string;
        traceparent: string;
        tracestate?: string;
    }
    Index
    parentSpanId?: string

    Parent span ID when available.

    spanId: string

    Current span ID.

    traceId: string

    W3C trace ID.

    traceparent: string

    W3C traceparent header value.

    tracestate?: string

    Optional W3C tracestate value associated with this context.