Schema for information about known nodes and cluster membership.

interface MembershipInformation {
    all_nodes: string[];
    cluster_nodes: string[];
}

Properties

all_nodes: string[]

List of nodes this node knows about, including the ones that are part of the cluster.

cluster_nodes: string[]

All cluster nodes.

Generated using TypeDoc