Last active
July 25, 2020 15:33
-
-
Save noseka1/73f656ec2453d4070f34b90004b8878a to your computer and use it in GitHub Desktop.
Fluentd configuration
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
# dump all forwarded input to stdout | |
<source> | |
@type forward | |
bind 0.0.0.0 | |
port 24224 | |
</source> | |
<source> | |
@type forward | |
bind 0.0.0.0 | |
port 24225 | |
<transport tls> | |
cert_path /mnt/ca-bundle.crt | |
private_key_path /mnt/key.pem | |
</transport> | |
</source> | |
<match **> | |
@type stdout | |
<format> | |
@type json | |
</format> | |
</match> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment