Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added target_bulk_bytes to the docs for logstash-output plugin #7869

Merged
merged 10 commits into from
Aug 1, 2024
1 change: 1 addition & 0 deletions _tools/logstash/ship-to-opensearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ output {
- service_name (string, default => "es") - Defines the service name to be used for `aws_iam` authentication.
- legacy_template (boolean, default => true) - Selects the OpenSearch template API. When `true`, uses legacy templates via the _template API. When `false`, uses composable templates via the _index_template API.
- default_server_major_version (number) - The OpenSearch server major version to use when it's not available from the OpenSearch root URL. If not set, the plugin throws an exception when the version can't be fetched.
- target_bulk_bytes (number) - The maximum number of bytes in the buffer. When the maximum is reached, Logstash will flush the data to OpenSearch. This is useful for when the bulk requests are too large for the OpenSearch cluster and the cluster returns a `429` error.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rather than a hyphen separating the term from the description, they should all be either en dashes (--) or colons.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll go ahead and fix this really fast before we merge.


## Data streams

Expand Down
Loading