NodeStatus represents the status of a node. It provides the current status of the node, as seen by the manager. NodeStatus

interface NodeStatus {
    Addr?: string;
    Message?: string;
    State?: NodeState;
}

Properties

Properties

Addr?: string

IP address of the node.

Message?: string
State?: NodeState