OBJECT

SnappableAggregation

Description

The aggregation data of some workload statistics.

link GraphQL Schema definition

  • type SnappableAggregation {
  • # The total number of snapshots present for the workload.
  • totalSnapshots: Int!
  • # The number of snapshots that were missed.
  • missedSnapshots: Int!
  • # The amount of storage used by archived snapshots.
  • archiveStorage: Long!
  • # The amount of storage used by replicated snapshots.
  • replicaStorage: Long!
  • # Physical bytes used by snapshots of this workload.
  • physicalBytes: Long!
  • # Logical bytes used by snapshots of this workload.
  • logicalBytes: Long!
  • # The logical size of the workload's last snapshot.
  • lastSnapshotLogicalBytes: Long!
  • # Bytes ingested over the network for this workload.
  • transferredBytes: Long!
  • }