The out_opensearch Output plugin writes records into OpenSearch. By default, it creates records using bulk api which performs multiple indexing operations in a single API call. This reduces overhead and can greatly increase indexing speed. This means that when you first import records using the plugin, records are not immediately pushed to OpenSearch.
Records will be sent to OpenSearch when the chunk_keys condition has been met. To change the output frequency, please specify the time in chunk_keys and specify timekey value in the configuration.
This document does not describe all the parameters. For details, refer to the Further Reading section.
Installation
Since out_opensearch has been included in the alternative distribution of calyptia-fluentd since v1.3.4, calyptia-fluentd users do not need to install it manually.
If you have installed Fluentd without calyptia-fluentd, please install this plugin using fluent-gem or td-agent-gem (for td-agent users):
$ fluent-gem install fluent-plugin-opensearch
$ td-agent-gem install fluent-plugin-opensearch
Example Configuration
Here is a simple working configuration for OpenSearch instance that is running on localhost:
The hostname of your OpenSearch node (default: localhost).
port (optional)
The port number of your OpenSearch node (default: 9200).
hosts (optional)
If you want to connect to more than one OpenSearch nodes, specify this option in the following format:
If you use this option, the host and port options are ignored.
user, password (optional)
The login credentials to connect to the OpenSearch node (default: nil):
scheme (optional)
Specify https if your OpenSearch endpoint supports SSL (default: http).
path (optional)
The REST API endpoint of OpenSearch to post write requests (default: nil).
index_name (optional)
The index name to write events to (default: fluentd).
This option supports the placeholder syntax of Fluentd plugin API. For example, if you want to partition the index by tags, you can specify it like this:
Here is a more practical example which partitions the OpenSearch index by tags and timestamps:
Time placeholder needs to set up tag and time in chunk_keys. Also, it needs to specify timekey for time slice of chunk: