Skip to content

Commit

Permalink
Upadate Application template to include summary
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreen27 committed Aug 7, 2023
1 parent cb1aa30 commit ffc13f2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions templates/Applications.template
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,17 @@ sources:
WHERE ( KeyName =~ Regex OR DisplayName =~ Regex )
LIMIT 1 -- limit 1 hit per domain for performance
}, workers= 20)

notebook:
- type: vql_suggestion
name: Detection summary
template: |
/*
### Detection summary
*/

SELECT Category,DisplayName,
count() as Total
FROM source()
GROUP BY DisplayName
ORDER BY Total DESC

0 comments on commit ffc13f2

Please sign in to comment.