OBJECT

AnomalyResult

Description

Anomaly analysis report from lambda service.

link GraphQL Schema definition

  • type AnomalyResult {
  • # The database ID of the anomaly result.
  • id: String!
  • # The internal fid of the object.
  • workloadFid: UUID!
  • # The internal ID of the object.
  • workloadId: String!
  • # The name of the object.
  • workloadName: String
  • # The type of the object.
  • objectType: ObjectTypeEnum
  • # The internal fid of the snapshot.
  • snapshotFid: UUID!
  • # The internal ID of the snapshot.
  • snapshotId: String!
  • # The date of the snapshot.
  • snapshotDate: DateTime!
  • # Time when the anomaly was detected.
  • detectionTime: DateTime!
  • # The ID of the previous snapshot.
  • previousSnapshotId: String!
  • # The date of the previous snapshot.
  • previousSnapshotDate: DateTime!
  • # The probability of the snapshot being anomalous.
  • anomalyProbability: Float!
  • # Indicates whether the snapshot is anomalous.
  • isAnomaly: Boolean!
  • # Count of new files created.
  • filesCreatedCount: Long
  • # Count of files modified.
  • filesModifiedCount: Long
  • # Count of files deleted.
  • filesDeletedCount: Long
  • # Total number of suspicious files.
  • suspiciousFilesCount: Long
  • # Total new bytes created.
  • bytesCreatedCount: Long
  • # Total bytes modified.
  • bytesModifiedCount: Long
  • # Total bytes deleted.
  • bytesDeletedCount: Long
  • # Net change in the number of bytes. For example, if 5 bytes are added and 3 bytes
  • # deleted, this field returns 2 as the number of bytes that changed.
  • bytesNetChangedCount: Long
  • # Internal managed ID of the object.
  • managedId: String!
  • # Specifies whether the snapshot is encrypted.
  • isEncrypted: Boolean
  • # Severity of the anomaly.
  • severity: ActivitySeverityEnum!
  • # The Rubrik cluster of the object.
  • cluster: Cluster!
  • # The location of the object.
  • location: String!
  • # The analyzed snapshot.
  • snapshot: CdmSnapshot
  • # The ransomware analysis result, including encryption.
  • ransomwareResult: RansomwareResult
  • }