From a7ecf37e0cc4f978d2aa22638c5cd793b4c9ad93 Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Mon, 29 Dec 2025 13:40:53 +0100 Subject: [PATCH] out_cloudwatch: fix typos in conifguration - Fix `add_enity` to `add_entity` - Fix `log_supress_interval` to `log_suppress_interval` Signed-off-by: Eric D. Schabell --- pipeline/outputs/cloudwatch.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline/outputs/cloudwatch.md b/pipeline/outputs/cloudwatch.md index 4990dbee4..a262d227b 100644 --- a/pipeline/outputs/cloudwatch.md +++ b/pipeline/outputs/cloudwatch.md @@ -16,7 +16,7 @@ See [AWS credentials](https://docs.fluentbit.io/manual/administration/aws-creden | Key | Description | Default | |------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------| -| `add_enity` | Add entity to `PutLogEvent` calls. | `false` | +| `add_entity` | Add entity to `PutLogEvent` calls. | `false` | | `alias` | Sets an alias, use for multiple instances of the same output plugin. | _none_ | | `auto_create_group` | Automatically create the log group. Allowed values: `true`, `false` (case insensitive). | `false` | | `auto_retry_requests` | Immediately retry failed requests to AWS services once. This option doesn't affect the normal Fluent Bit retry mechanism with backoff. Instead, it enables an immediate retry with no delay for networking errors, which can help improve throughput when there are transient/random networking issues. | `true` | @@ -33,7 +33,7 @@ See [AWS credentials](https://docs.fluentbit.io/manual/administration/aws-creden | `log_stream_name` | The name of the CloudWatch log stream that you want log records sent to. | _none_ | | `log_stream_prefix` | Prefix for the log stream name. The tag is appended to the prefix to construct the full log stream name. Not compatible with the `log_stream_name` option. | _none_ | | `log_stream_template` | Template for CloudWatch Log Stream name using record accessor syntax. Plugin falls back to the `log_stream_name` or `log_stream_prefix` configured if needed. | _none_ | -| `log_supress_interval` | Suppresses log messages from output plugin that appear similar within a specified time interval. `0` no suppression. | `0` | +| `log_suppress_interval` | Suppresses log messages from output plugin that appear similar within a specified time interval. `0` no suppression. | `0` | | `match` | Set a tag pattern to match records that output should process. Exact matches or wildcards (for example `*`). | _none_ | | `match_regex` | Set a regular expression to match tags for output routing. This allows more flexible matching compared to wildcards. | _none_ | | `metric_dimensions` | Metric dimensions is a list of lists. If you have only one list of dimensions, put the values as a comma separated string. If you want to put list of lists, use the list as semicolon separated strings. If your value is `d1,d2;d3`, it will consider it as `[[d1, d2],[d3]]`. | _none_ |