Interface DatabaseStorageInfo

Contains the information about how much storage space a cluster has available.

interface DatabaseStorageInfo {
    nodeCount: number;
    replicationFactor: number;
    totalStorage: number;
    usedStorage?: number;
}

Properties

nodeCount: number

Node count for the cluster.

replicationFactor: number

Number of nodes storing a piece of data

totalStorage: number

Total storage of the cluster in GB

usedStorage?: number

Used storage of the cluster in GB