-
Notifications
You must be signed in to change notification settings - Fork 1.4k
out_stdout: support output to $stdout independently of logger #5036
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
Merged
daipom
merged 2 commits into
fluent:master
from
daipom:out_stdout-add-feature-sync_logger
Jul 30, 2025
Merged
out_stdout: support output to $stdout independently of logger #5036
daipom
merged 2 commits into
fluent:master
from
daipom:out_stdout-add-feature-sync_logger
Jul 30, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Watson1978
reviewed
Jul 29, 2025
3e14f1d
to
203627e
Compare
Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com> Co-authored-by: Takuro Ashie <ashie@clear-code.com> Co-authored-by: Kentaro Hayashi <hayashi@clear-code.com> Co-authored-by: Shizuo Fujita <fujita@clear-code.com>
203627e
to
a82db7a
Compare
daipom
added a commit
to daipom/fluentd-docs-gitbook
that referenced
this pull request
Jul 29, 2025
fluent/fluentd#5036 Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com>
Watson1978
previously approved these changes
Jul 29, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏻
kenhys
requested changes
Jul 29, 2025
Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com> Co-authored-by: Kentaro Hayashi <kenhys@gmail.com>
kenhys
approved these changes
Jul 29, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Thanks! |
daipom
added a commit
to fluent/fluentd-docs-gitbook
that referenced
this pull request
Jul 30, 2025
fluent/fluentd#5036 Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Which issue(s) this PR fixes:
What this PR does / why we need it:
Add
use_logger
option toout_stdout
plugin.bool
true
If you set
false
to this option,out_stdout
outputs events to$stdout
, instead of$logger
.This feature enables events to be output to STDOUT in containerized environments, such as K8s.
This does not change the default behavior.
Note: Although it's preferable for the default value of a
bool
option to befalse
(because it can be used as a flag), I couldn't think of a suitable name for it.Docs Changes:
fluent/fluentd-docs-gitbook#593
Release Note:
out_stdout: support output to STDOUT independently of Fluentd logger by setting
use_logger
tofalse
.