kkrpc
    Preparing search index...

    Interface RPCMessageMetadata

    Optional out-of-band metadata carried with an RPC request.

    interface RPCMessageMetadata {
        baggage?: string;
        requestId?: string;
        runtime?: Record<string, undefined | null | string | number | boolean>;
        sessionId?: string;
        traceparent?: string;
        tracestate?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Application-specific metadata fields.

    Index

    Properties

    baggage?: string

    W3C baggage header value.

    requestId?: string

    Application or platform request id for log correlation.

    runtime?: Record<string, undefined | null | string | number | boolean>

    Runtime-specific low-cardinality metadata.

    sessionId?: string

    Session id for grouping related RPC calls.

    traceparent?: string

    W3C trace context parent header value.

    tracestate?: string

    W3C trace context state header value.