ManagerStatus represents the status of a manager. It provides the current status of a node's manager component, if the node is a manager. ManagerStatus

interface ManagerStatus {
    Addr?: string;
    Leader?: boolean;
    Reachability?: Reachability;
}

Properties

Addr?: string

The IP address and port at which the manager is reachable.

Leader?: boolean
Reachability?: Reachability