Forces a pipeline to run locally.
local { … }Description
Section titled “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
Section titled “Examples”Do an expensive sort locally
Section titled “Do an expensive sort locally”exportwhere @name.starts_with("suricata")local { sort timestamp}write_ndjsonsave_file "eve.json"