Skip to main content
Version: v4.24

local

Forces a pipeline to run locally.

local { … }

Description

The local operator takes a pipeline as an argument and forces it to run at a client process.

This operator has no effect when running a pipeline through the API or Tenzir Platform.

Examples

Do an expensive sort locally

export
where @name.starts_with("suricata")
local {
  sort timestamp
}
write_ndjson
save_file "eve.json"