Fluent Bit Docker image based on Debian base image from Google.
Use docker build
command to build the image. This example names the image "fluent-bit:latest":
docker build -t fluent-bit:0.11 ./
Once the image is built, it's ready to run:
docker run -p 127.0.0.1:24224:24224 fluent-bit:latest
By default, the configuration set a listener on TCP port 24224 through Forward protocol and prints to the standard output interface each message. So this can be used to forward Docker log messages from one container to the Fluent Bit image, e.g:
$ docker run --log-driver=fluentd -t ubuntu echo "Testing a log message"
On Fluent Bit container will print to stdout something like this:
Fluent-Bit v0.11.1
Copyright (C) Treasure Data
[0] docker.31c94ceb86ca: [1487548735, {"container_id"=>"31c94ceb86cae7055564eb4d65cd2e2897addd252fe6b86cd11bddd70a871c08", "container_name"=>"/admiring_shannon", "source"=>"stdout","}]og"=>"Testing a log message
Feel free to join us on our Mailing List or IRC:
- Slack: http://slack.fluentd.org / channel #fluent-bit
- Mailing List: https://groups.google.com/forum/#!forum/fluent-bit
- IRC: irc.freenode.net #fluent-bit
- Twitter: http://twitter.com/fluentbit
This program is under the terms of the Apache License v2.0.
Fluent Bit is made and sponsored by Treasure Data among other contributors.