OBJECT

ClusterNodeStats

Description

The node-level performance statistics of a Rubrik cluster.

link GraphQL Schema definition

  • type ClusterNodeStats {
  • # CPU utilization of the node.
  • cpuStat: Long!
  • # Data received over the network, in bytes per second.
  • networkBytesReceived: Long!
  • # Data transmitted over the network, in bytes per second.
  • networkBytesTransmitted: Long!
  • # Input/output read operations per second.
  • iopsReadsPerSecond: Long!
  • # Input/output write operations per second.
  • iopsWritesPerSecond: Long!
  • # Read Input/output throughput, in bytes per second.
  • readThroughputBytesPerSecond: Long!
  • # Write Input/output throughput, in bytes per second.
  • writeThroughputBytesPerSecond: Long!
  • # Memory used on the node, in percentage.
  • usedMemoryStat: Int!
  • # Time at which the performance metrics were retrieved.
  • time: DateTime!
  • # Rubrik cluster UUID.
  • clusterId: UUID!
  • # Rubrik cluster node ID.
  • nodeId: String!
  • }