Skip to content

Receives events via Opensearch Bulk API.

from_opensearch [url:string, keep_actions=bool, max_request_size=int, tls=record]

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".

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

Defaults to false.

The maximum size of an incoming request to accept.

Defaults to 10Mib.

import TLSOptions from ‘@partials/operators/TLSOptions.mdx’;

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

Last updated: