kkrpc
    Preparing search index...

    Interface InspectEvent

    Normalized event emitted by the inspector plugin.

    interface InspectEvent {
        direction: "sent" | "received";
        duration?: number;
        message: RPCMessage;
        sessionId: string;
        timestamp: number;
    }
    Index

    Properties

    direction: "sent" | "received"

    Whether the observed message was sent or received by this endpoint.

    duration?: number

    Optional request latency in milliseconds when latency tracking is enabled.

    message: RPCMessage

    Compact RPC protocol message represented by this event.

    sessionId: string

    Logical session id used to distinguish endpoints or test cases.

    timestamp: number

    Unix timestamp in milliseconds when the event was emitted.