OBJECT

ClusterStatsData

Description

Cluster statistics data.

link GraphQL Schema definition

  • type ClusterStatsData {
  • # Amount of storage available in the cluster.
  • availableCapacity: Float!
  • # Average daily growth of storage in the cluster.
  • averageDailyGrowth: Float!
  • # Amount of CDP storage in the cluster.
  • cdpCapacity: Float!
  • # UUID of the cluster.
  • clusterUuid: String!
  • # Amount of ingested archival storage in the cluster.
  • ingestedArchivalStorage: Float!
  • # Amount of ingested snapshot storage in the cluster.
  • ingestedSnapshotStorage: Float!
  • # Last update time of the statistics.
  • lastUpdateTime: DateTime!
  • # Amount of Live Mount storage in the cluster.
  • liveMountCapacity: Float!
  • # Amount of miscellaneous storage in the cluster.
  • miscellaneousCapacity: Float!
  • # Amount of pending snapshot storage in the cluster.
  • pendingSnapshotCapacity: Float!
  • # Amount of physical archival storage in the cluster.
  • physicalArchivalStorage: Float!
  • # Amount of physical snapshot storage in the cluster.
  • physicalSnapshotStorage: Float!
  • # Amount of storage for snapshots in the cluster.
  • snapshotCapacity: Float!
  • # Total amount of storage in the cluster.
  • totalCapacity: Float!
  • # Amount of storage used in the cluster.
  • usedCapacity: Float!
  • }