Skip to main content

Anomaly

A single anomaly detected for a machine identity by Agent Behavior Monitoring.

Properties

NameTypeDescriptionNotes
idstrAnomaly identifier.[optional]
anomaly_typestrCategory of the detected anomaly.[optional]
descriptionstrHuman-readable description of the anomaly.[optional]
rule_idstrIdentifier of the detection rule that produced the anomaly.[optional]
data_sources[]strSource systems that contributed to the detection.[optional]
detected_atdatetimeDate-time the anomaly was detected.[optional]
evidenceAnomalyEvidence[optional]
}

Example

from sailpoint.machine_identities.models.anomaly import Anomaly

anomaly = Anomaly(
id='rule-anom-001',
anomaly_type='unsanctioned_app',
description='Agent accessed an unsanctioned application.',
rule_id='rule-tool-usage',
data_sources=["SENTINEL"],
detected_at='2026-07-13T10:14Z',
evidence=sailpoint.machine_identities.models.anomaly_evidence.Anomaly Evidence(
source = 'SENTINEL',
timestamp = sailpoint.machine_identities.models.anomaly_evidence_timestamp.Anomaly Evidence Timestamp(
at = '2026-07-13T10:14Z',
from = '2026-07-13T09:00Z', ),
agent_attribute_type = 'shell_exec',
agent_attribute_value = 'curl external.example.com',
baseline = null, )
)

[Back to top]