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

    Interface QwpSenderMetrics

    Immutable high-level sender counters plus the active ingress snapshot.

    interface QwpSenderMetrics {
        autoFlushBytes: number;
        closed: boolean;
        closing: boolean;
        connected: boolean;
        deferredRows: number;
        effectiveAutoFlushBytes: number;
        ingress?: QwpIngressMetrics;
        pendingBytes: number;
        pendingRows: number;
        totalFlushes: number;
        totalFlushFailures: number;
        totalRowsPublished: number;
        totalRowsStaged: number;
        totalTransactionsCommitted: number;
    }
    Index

    Properties

    autoFlushBytes: number
    closed: boolean
    closing: boolean
    connected: boolean
    deferredRows: number
    effectiveAutoFlushBytes: number
    pendingBytes: number

    Estimated raw column-buffer bytes currently staged.

    pendingRows: number
    totalFlushes: number
    totalFlushFailures: number
    totalRowsPublished: number

    Rows whose encoded frames have entered the ingress session.

    totalRowsStaged: number
    totalTransactionsCommitted: number