@dvelop-sdk
    Preparing search index...

    Interface TraceContext

    Defines the header used for distributed tracing. A Traceparent is based on the W3C Trace Context specification.

    interface TraceContext {
        parentId?: string;
        sampled: boolean;
        spanId: string;
        traceId: string;
        version: number;
    }
    Index

    Properties

    parentId?: string
    sampled: boolean
    spanId: string
    traceId: string
    version: number