User Guide
Vertex-Triage User Guide
Vertex-Triage adds new Storm commands and Workflows to manage queues and tasks.
Getting Started
Check with your Admin to enable permissions.
Examples
Create a new queue
Queues can also be created via the dedicated workflow.
> vertex.triage.queue.add alerts --desc "A queue for work items relating to alerts"
proj:project=684fe313519baadf7b0ad0f1689f591f
.created = 2026/02/11 23:38:57.384
:created = 2026/02/11 23:38:57.384
:creator = root
:desc = A queue for work items relating to alerts
:name = alerts
Create a new task within the “alerts” queue that references a risk:alert node
Tasks can also be created from a Node Action in the Research Tool.
> risk:alert#newalerts | vertex.triage.task.add alerts "alert investigation" --assignee visi --yield
proj:ticket=2a6e62608a076b2c3a7110a47cff47ed
.created = 2026/02/11 23:38:57.417
:assignee = visi
:created = 2026/02/11 23:38:57.416
:creator = root
:name = alert investigation
:priority = medium
:project = 684fe313519baadf7b0ad0f1689f591f
:status = new
:type = task
:updated = 2026/02/11 23:38:57.416
Create a trigger to add a task when media:news:title is set and contains a keyword
This example creates a new task when :title contains the keyword malware,
and adds it to the malware queue. The title is used to populate the task name.
> trigger.add prop:set --prop media:news:title
--query { +:title~=malware | vertex.triage.task.add malware `triage "{:title}"` }
Added trigger: 9ffa03c19f8293bdc026edef833421fa
> [ media:news=* :title="an article about malware" ]
media:news=2b2e29bbce6a6175488a256508d04f46
.created = 2026/02/11 23:38:57.452
:title = an article about malware
> proj:project:name=malware -> proj:ticket
proj:ticket=b126b67a33634a3634e6d023f181a17c
.created = 2026/02/11 23:38:57.466
:created = 2026/02/11 23:38:57.466
:creator = root
:name = triage "an article about malware"
:priority = medium
:project = 4409db2d71ea20def986d1728fa5b897
:status = new
:type = task
:updated = 2026/02/11 23:38:57.466
The task will also have a reference to the inbound node.
> proj:project:name=malware -> proj:ticket -(refs)> *
media:news=2b2e29bbce6a6175488a256508d04f46
.created = 2026/02/11 23:38:57.452
:title = an article about malware
Create a cron to check an external system and create a task based on the results
This example calls a placeholder module, and creates tasks in the extsys queue.
A similar ingest routine could be written for calling an HTTP API.
> cron.add --hour +8 {
$mod = $lib.import(somemodule)
$data = $mod.getData()
for $item in $data {
vertex.triage.task.add extsys $item.name --desc $item.details
}
}
Created cron job: 3be9c87d0fe4c3989c2ac1f0c6d299bc
Use of meta:source nodes
Vertex-Triage uses a meta:source node and -(seen)> light
weight edges to track created nodes.
> meta:source=62cbf38be08a5fc8933790a68c41d103
meta:source=62cbf38be08a5fc8933790a68c41d103
.created = 2026/02/11 23:38:57.382
:name = vertex-triage