Docker Image
Step 0: Install Docker
Step 1: Pull Fluentd's Docker image
$ docker pull fluent/fluentd:v0.12-debianStep 2: Launch Fluentd Container
# /tmp/fluentd.conf
<source>
@type http
port 9880
bind 0.0.0.0
</source>
<match **>
@type stdout
</match>Step3: Post Sample Logs via HTTP
Next Steps
Last updated
Was this helpful?