Opensearch
Description
Output plugin for sending events to OpenSearch.
Parameters
Usage name: opensearch
Parameter | Expected value | Required | Description |
---|---|---|---|
hosts | <list[str]> (e.g ["https://localhost:9200"] ) | Yes | List of data nodes of OpenSearch cluster |
user | <str> | Yes | User for authorization |
password | <str> | Yes | Password for authorization |
index | <str> | Yes | Index name for events |
verify_ssl | <bool> | Yes | Whether to verify ssl certificate when making requests to the cluster |
ca_cert_path | <str> | No | Path to trusted CA certificate |
Example
opensearch:
hosts: ["https://localhost:9200"]
user: "admin"
password: "${secrets.opensearch_pwd}"
index: "test"
verify_ssl: false