Skip to content

from_opensearch

Receives events via Opensearch Bulk API.

from_opensearch [url:string, keep_actions=bool, max_request_size=int, tls=bool,
certfile=string, keyfile=string, password=string]

The from_opensearch operator emulates simple situations for the Opensearch Bulk API.

URL to listen on.

Must have the form host[:port].

Defaults to "0.0.0.0:9200".

If to keep the command objects such as {"create": ...}.

Defaults to false.

The maximum size of an incoming request to accept.

Defaults to 10Mib.

Enables TLS.

Defaults to false.

Path to the client certificate. Required if tls is true.

Path to the key for the client certificate. Required if tls is true.

Password for keyfile.

Listen on port 8080 on an interface with IP 1.2.3.4

Section titled “Listen on port 8080 on an interface with IP 1.2.3.4”
from_opensearch "1.2.3.4:8080"
from_opensearch tls=true, certfile="server.crt", keyfile="private.key"

to_opensearch