@accordkit/tracer - v0.2.1
    Preparing search index...

    Interface TraceContext

    W3C TraceContext-like structure for correlating events.

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

    Properties

    traceId: string

    Unique ID for an entire trace tree.

    spanId: string

    Unique ID for a single span or event within a trace.

    parentSpanId?: string

    The spanId of the parent span, if any.