I need a dashboard query to fetch the SecOps SIEM alert creation time and SecOps SOAR Case creation time of that same alert. So that I can find latency in case creation.
Solved
Comparison of Alert Creation time vs Case Creation Time in SecOps Dashboard
Best answer by dnehoda
This may work better…
// 1. Filter for valid cases and ignore non-SIEM/blank cases
case.name != ""
case.alerts.metadata.detection_time.seconds != 0
match:
case.name
outcome:
$soar_created_at = max(case.create_time.seconds)
$siem_alert_at = max(case.alerts.metadata.detection_time.seconds)
// Calculate latency
$latency_minutes = ($soar_created_at - $siem_alert_at) / 60
$case_display_name = array_distinct(case.display_name)
$rule_names = array_distinct(case.alerts.metadata.detection.rule_name)
order:
$latency_minutes desc
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.



