supermock / fluent-bit-docker-image

Docker image for Fluent Bit

Home Page:https://hub.docker.com/r/fluent/fluent-bit/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fluent Bit Docker Image

Fluent Bit Docker image based on Debian.

1. Build image

Use make command to build the images. Before starting the arm32v7 platform build, you need to run this registry, so you can perform a cross-build. Just follow the documentation: https://github.com/multiarch/qemu-user-static/blob/master/README.md

$ TARGET_ARCHITECTURE=[arm32v7, x86_64, (nothing to build all architectures)] make

2. Push it

Use make push command to push the image, TARGET_ARCHITECTURE is necessary.

$ TARGET_ARCHITECTURE=[arm32v7, x86_64] make push

3. Test it

Once the image is built, it's ready to run:

$ docker run -p 127.0.0.1:24224:24224 fluent/fluent-bit:[TAGNAME]

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.12.9
Copyright (C) Treasure Data

[0] docker.31c94ceb86ca: [1487548735, {"container_id"=>"31c94ceb86cae7055564eb4d65cd2e2897addd252fe6b86cd11bddd70a871c08", "container_name"=>"/admiring_shannon", "source"=>"stdout","}]og"=>"Testing a log message

Contact

Feel free to join us on our Mailing List or IRC:

License

This program is under the terms of the Apache License v2.0.

Authors

Fluent Bit is made and sponsored by Treasure Data among other contributors.

About

Docker image for Fluent Bit

https://hub.docker.com/r/fluent/fluent-bit/

License:Apache License 2.0


Languages

Language:Makefile 100.0%