OBJECT

ClusterMetric

Description

Metrics of a Rubrik cluster.

link GraphQL Schema definition

  • type ClusterMetric {
  • # Available bytes in the Rubrik cluster.
  • availableCapacity: Long!
  • # Used bytes in the Rubrik cluster.
  • usedCapacity: Long!
  • # Total bytes in the Rubrik cluster.
  • totalCapacity: Long!
  • # Total bytes used by snapshots in the Rubrik cluster.
  • snapshotCapacity: Long!
  • # Total bytes used by Live Mounts in the Rubrik cluster.
  • liveMountCapacity: Long!
  • # Total miscellaneous bytes used in the Rubrik cluster.
  • miscellaneousCapacity: Long!
  • # Total number of bytes used by pending snapshots in the Rubrik cluster.
  • pendingSnapshotCapacity: Long!
  • # Total number of bytes used by CDP in the Rubrik cluster.
  • cdpCapacity: Long!
  • # Ingested bytes for local snapshots.
  • ingestedSnapshotStorage: Long!
  • # Physical bytes for local snapshots.
  • physicalSnapshotStorage: Long!
  • # Ingested bytes for archived snapshots.
  • ingestedArchivalStorage: Long!
  • # Physical bytes for archived snapshots.
  • physicalArchivalStorage: Long!
  • # Time when the Rubrik cluster metrics was last updated.
  • lastUpdateTime: DateTime!
  • }