Any tips for building a dashboard with a table that counts the alerts ingested in SOAR?
I’m not sure where the alert name could be found...
```
case.status = "CLOSED" AND NOT (case.type = "TEST" OR case.tags.name = "Simulated Case")
$Alert = case.alerts.metadata.soar_alert_metadata.source_rule
match:
$Alert
outcome:
$Count = count(case.alerts.metadata.id)
order:
$Count desc
limit:
10
```
