prorm API Reference
    Preparing search index...

    Interface ReplicaStatus

    Replica status

    interface ReplicaStatus {
        name: string;
        healthy: boolean;
        lag: number | null;
        activeConnections: number;
        lastCheck: Date;
        error?: string;
    }
    Index
    name: string

    Replica name

    healthy: boolean

    Whether the replica is healthy

    lag: number | null

    Replication lag in milliseconds

    activeConnections: number

    Number of active connections

    lastCheck: Date

    Last check timestamp

    error?: string

    Error message if unhealthy