QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Interface QwpIngressTransportMetrics

    Physical ingress delivery counters maintained by reconnecting transports.

    interface QwpIngressTransportMetrics {
        abandonedFrameRanges?: readonly { fromFsn: bigint; toFsn: bigint }[];
        acknowledgedFrameSequence: bigint;
        deliveredConnectionNotifications?: number;
        deliveredErrorNotifications?: number;
        droppedConnectionNotifications?: number;
        droppedErrorNotifications?: number;
        memoryReplayMaxBytes?: number;
        memoryReplayUsedBytes?: number;
        pendingReplayBytes: number;
        pendingReplayFrames: number;
        publishedFrameSequence: bigint;
        totalBytesReplayed: number;
        totalBytesSent: number;
        totalFailovers: number;
        totalFramesReplayed: number;
        totalFramesSent: number;
        totalMemoryReplayAppendTimeouts: number;
        totalMemoryReplayBackpressureStalls: number;
        totalReconnectAttempts: number;
        totalReconnectErrors: number;
        totalReconnectsSucceeded: number;
        totalServerNacks: number;
        waitingMemoryReplayAppends: number;
    }
    Index

    Properties

    abandonedFrameRanges?: readonly { fromFsn: bigint; toFsn: bigint }[]

    Stable frame ranges retired without ever receiving a server ACK.

    acknowledgedFrameSequence: bigint

    Highest replay-frame sequence removed after a server acknowledgement.

    deliveredConnectionNotifications?: number
    deliveredErrorNotifications?: number
    droppedConnectionNotifications?: number
    droppedErrorNotifications?: number
    memoryReplayMaxBytes?: number

    Configured cap for the built-in memory replay store.

    memoryReplayUsedBytes?: number

    Estimated payload and record-bookkeeping bytes charged to that cap.

    pendingReplayBytes: number
    pendingReplayFrames: number
    publishedFrameSequence: bigint

    Highest stable replay-frame sequence handed to the transport.

    totalBytesReplayed: number
    totalBytesSent: number
    totalFailovers: number
    totalFramesReplayed: number
    totalFramesSent: number

    Physical WebSocket sends, including replay and dictionary catch-up.

    totalMemoryReplayAppendTimeouts: number
    totalMemoryReplayBackpressureStalls: number
    totalReconnectAttempts: number
    totalReconnectErrors: number
    totalReconnectsSucceeded: number
    totalServerNacks: number
    waitingMemoryReplayAppends: number