Skip to main content

AnomalyEvidence

Properties

NameTypeDescriptionNotes
SourceStringEvidence source system.[optional]
TimestampAnomalyEvidenceTimestamp[optional]
AgentAttributeTypeStringAttribute type captured for SENTINEL detections; null for SIEM detections.[optional]
AgentAttributeValueStringAttribute value captured for SENTINEL detections; null for SIEM detections.[optional]
BaselineAnomalyBaselinePeer-group baseline for SIEM detections; null for SENTINEL detections.[optional]

Examples

  • Prepare the resource
$AnomalyEvidence = Initialize-AnomalyEvidence -Source SENTINEL `
-Timestamp null `
-AgentAttributeType shell_exec `
-AgentAttributeValue curl external.example.com `
-Baseline null
  • Convert the resource to JSON
$AnomalyEvidence | ConvertTo-JSON

[Back to top]