Last active
May 21, 2019 16:09
-
-
Save jsturtevant/26b3f9b9fc87cf517d37c49759295eb6 to your computer and use it in GitHub Desktop.
simple fluentd conf
This file contains 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
<source> | |
@type forward | |
</source> | |
<match test.**> | |
@type stdout | |
</match> |
This file contains 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
<source> | |
@type tail | |
format none | |
path c:\var\log\containers\*.log | |
pos_file c:\var\log\containers\fluentd_test.pos | |
tag test | |
rotate_wait 5 | |
read_from_head true | |
refresh_interval 60 | |
</source> | |
<match test> | |
@type stdout | |
</match> |
This file contains 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
<source> | |
@type tail | |
format none | |
path C:\logs\log.log | |
pos_file C:\logs\fluentd_test.pos | |
tag test | |
rotate_wait 5 | |
read_from_head true | |
refresh_interval 60 | |
</source> | |
<match test> | |
@type stdout | |
</match> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment