list
Shows managed pipelines.
pipeline::list
Description
The pipeline::list
operator returns the list of all managed pipelines. Managed
pipelines are pipelines created through the /pipeline
API, which
includes all pipelines run through the Tenzir Platform.
Examples
Count pipelines per state
pipeline::list
top state
{
"state": "running",
"count": 31
}
{
"state": "failed",
"count": 4
}
{
"state": "stopped",
"count": 2
}
Show pipelines per package
pipeline::list
summarize package, names=collect(name)
{
"package": "suricata-ocsf",
"names": [
"Suricata Flow to OCSF Network Activity",
"Suricata DNS to OCSF DNS Activity",
"Suricata SMB to OCSF SMB Activity",
// …
]
}