OBJECT

BackupStatsBucket

Description

Stores the backup stats within a time range bucket.

link GraphQL Schema definition

  • type BackupStatsBucket {
  • # Start time of the bucket.
  • startTime: DateTime
  • # End time of the bucket.
  • endTime: DateTime
  • # Number of jobs succeeded.
  • numSucceeded: Int!
  • # Number of jobs failed.
  • numFailed: Int!
  • }