OBJECT

RubrikSyncStatus

Description

Status of the data syncing jobs from CDM to RSC.

link GraphQL Schema definition

  • type RubrikSyncStatus {
  • # Last success time of the object metadata syncing job.
  • objectMetadataSyncLastSuccessTime: DateTime
  • # Last success time of the cluster syncing job.
  • clusterSyncLastSuccessTime: DateTime
  • # Last success time of the reports syncing job.
  • reportsSyncLastSuccessTime: DateTime
  • # Last success time of the job-monitoring dashboard syncing job.
  • jobMonitoringSyncLastSuccessTime: DateTime
  • # The time when the events syncing job was last successful.
  • eventsSyncLastSuccessTime: DateTime
  • # Specifies whether cluster sync is operating correctly.
  • isClusterSyncHealthy: Boolean!
  • # Specifies whether job monitoring sync is operating correctly.
  • isJobMonitoringSyncHealthy: Boolean!
  • # Specifies whether metadata sync is operating correctly.
  • isMetadataSyncHealthy: Boolean!
  • # Specifies whether events sync is operating correctly.
  • isEventsSyncHealthy: Boolean!
  • # Specifies whether reports sync is operating correctly.
  • isReportsSyncHealthy: Boolean!
  • }