From bc8f00958cd458b22ae37ee03e64a501aa64239d Mon Sep 17 00:00:00 2001 From: andylim0221 Date: Tue, 22 Jul 2025 14:34:54 +0800 Subject: [PATCH] pipeline: outputs: cloudwatch: fix `auto_create_group` value Signed-off-by: andylim0221 --- pipeline/outputs/cloudwatch.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pipeline/outputs/cloudwatch.md b/pipeline/outputs/cloudwatch.md index a384bb5d9..623c58cfe 100644 --- a/pipeline/outputs/cloudwatch.md +++ b/pipeline/outputs/cloudwatch.md @@ -65,7 +65,7 @@ pipeline: region: us-east-1 log_group_name: fluent-bit-cloudwatch log_stream_prefix: from-fluent-bit- - auto_create_group: on + auto_create_group: true ``` {% endtab %} @@ -78,7 +78,7 @@ pipeline: region us-east-1 log_group_name fluent-bit-cloudwatch log_stream_prefix from-fluent-bit- - auto_create_group On + auto_create_group true ``` {% endtab %} @@ -100,7 +100,7 @@ pipeline: region: us-east-1 log_group_name: fluent-bit-cloudwatch log_stream_prefix: from-fluent-bit- - auto_create_group: on + auto_create_group: true endpoint: localhost port: 4566 ``` @@ -187,7 +187,7 @@ pipeline: region: us-east-1 log_group_name: fallback-group log_stream_prefix: fallback-stream - auto_create_group: on + auto_create_group: true log_group_template: application-logs-$kubernetes['host'].$kubernetes['namespace_name'] log_stream_template: $kubernetes['pod_name'].$kubernetes['container_name'] ``` @@ -202,7 +202,7 @@ pipeline: region us-east-1 log_group_name fallback-group log_stream_prefix fallback-stream - auto_create_group On + auto_create_group true log_group_template application-logs-$kubernetes['host'].$kubernetes['namespace_name'] log_stream_template $kubernetes['pod_name'].$kubernetes['container_name'] ```