Skip to content

Connects to a Unix domain socket and sends events.

to_unix_socket path:string, [max_retry_count=int] {}

Connects to the specified filesystem-backed Unix stream socket as a client and writes serialized events to the connection. Input events are run through a nested pipeline that must produce bytes, for example { write_json }.

If the connection fails, the operator reconnects automatically with exponential backoff. By default it retries forever; use max_retry_count to bound the number of reconnect attempts.

The operator connects only when the nested pipeline produces bytes. If the nested pipeline produces no output, to_unix_socket doesn’t open a socket connection.

The Unix domain socket path to connect to. The path may start with ~, which expands to the current user’s home directory. Relative paths are resolved relative to the process working directory.

The operator supports filesystem-backed Unix domain sockets only. It doesn’t support Linux abstract namespace sockets.

Maximum number of reconnect attempts after a failed connection. After this many consecutive failures, the operator emits an error and stops.

Defaults to retrying forever.

The pipeline to serialize input events into bytes. It must produce bytes as output, for instance { write_json } or { write_csv }.

from {message: "hello"}
to_unix_socket "/run/collector.sock" { write_json }

Last updated: