OBJECT

WorkloadAnomaly

Description

A workload that has a snapshot or children with anomalous activity.

link GraphQL Schema definition

  • type WorkloadAnomaly {
  • # The FID of the workload.
  • workloadFid: String!
  • # The Rubrik CDM ID of the workload.
  • workloadId: String!
  • # The name of the workload.
  • workloadName: String!
  • # The FID of the snapshot which was determined to have anomalous activity.
  • anomalousSnapshotFid: String!
  • # The Rubrik cluster ID of the snapshot determined to have anomalous activity.
  • anomalousSnapshotId: String!
  • # The number of files created within the snapshot.
  • createdFileCount: Long!
  • # The number of files deleted within the snapshot.
  • deletedFileCount: Long!
  • # The number of files modified within the snapshot.
  • modifiedFileCount: Long!
  • # The number of suspicious files within the snapshot.
  • suspiciousFileCount: Long!
  • # The level of encryption detected within the snapshot.
  • encryption: EncryptionLevel!
  • # A list of children belonging to the workload. These children were also
  • # determined to have snapshots with anomalous activity.
  • anomalousChildren: [WorkloadAnomaly!]!
  • # The total number of children belong to the workload, regardless
  • # of whether or not they have snapshots containing anomalous activity.
  • totalChildren: Long!
  • # Represents the information about strains that cause anomalies.
  • anomalyInfo: AnomalyInfo
  • # The FID of the snapshot taken before the snapshot that was determined
  • # to have anomalous activity.
  • previousSnapshotFid: String!
  • # Type of the anomaly detected.
  • anomalyType: AnomalyType!
  • # Time when the anomaly was detected.
  • detectionTime: DateTime
  • # Identifies the anomaly for a given workload.
  • anomalyId: String!
  • # The resolution status of the anomaly.
  • resolutionStatus: ResolutionStatus!
  • # The object type of the workload.
  • objectType: HierarchyObjectTypeEnum!
  • # The creation date of the snapshot determined to have anomalous activity.
  • anomalousSnapshotDate: DateTime!
  • # The Rubrik cluster associated with the workload.
  • cluster: Cluster!
  • # The location of the workload.
  • location: SnappableLocationType!
  • # The Data Discovery results of the snapshot before the occurrence of the anomaly
  • # in the workload.
  • previousPolicyObj: PolicyObj
  • # Severity of the anomaly event.
  • severity: ActivitySeverityEnum!
  • }