Schema for scheduler document information. A JSON object that may contain additional information about the state. For error states this will contain an error field and string value.

interface SchedulerInfo {
    changes_pending?: number;
    checkpointed_source_seq?: string;
    doc_write_failures?: number;
    docs_read?: number;
    docs_written?: number;
    error?: string;
    missing_revisions_found?: number;
    revisions_checked?: number;
    source_seq?: string;
    through_seq?: string;
}

Properties

changes_pending?: number

The count of changes not yet replicated.

checkpointed_source_seq?: string

The source sequence id which was last successfully replicated.

doc_write_failures?: number

The count of docs which failed to be written to the target.

docs_read?: number

The count of docs which have been read from the source.

docs_written?: number

The count of docs which have been written to the target.

error?: string

Replication error message.

missing_revisions_found?: number

The count of revisions which were found on the source, but missing from the target.

revisions_checked?: number

The count of revisions which have been checked since this replication began.

source_seq?: string

The last sequence number obtained from the source database changes feed.

through_seq?: string

The last sequence number processed by the replicator.

Generated using TypeDoc