Skip to main content

Opensearch

Description

Output plugin for sending events to OpenSearch.

Parameters

Usage name: opensearch

ParameterExpected valueRequiredDescription
hosts<list[str]> (e.g ["https://localhost:9200"])YesList of data nodes of OpenSearch cluster
user<str>YesUser for authorization
password<str>YesPassword for authorization
index<str>YesIndex name for events
verify_ssl<bool>YesWhether to verify ssl certificate when making requests to the cluster
ca_cert_path<str>NoPath to trusted CA certificate

Example

opensearch:
hosts: ["https://localhost:9200"]
user: "admin"
password: "${secrets.opensearch_pwd}"
index: "test"
verify_ssl: false