Return to Image List

fluent-bit

fluent-bit

Fluent-Bit is a Fast and Lightweight Logs and Metrics processor.

See github.com for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
1.7.1 docker pull icr.io/ibmz/fluent-bit@sha256:ad3db2140a00451fad2b946e5fbd6a57a4f67c07633aebfaa11b4b2686a6a50c Vulnerability Report09-13-2023
Version Pull String Security (IBM Cloud) Created

Usage Notes

Exposed Ports:

24224

Run a Fluent Bit instance that will receive messages over TCP port 24224 through the Forward protocol, and send the messages to the STDOUT interface in JSON format every second:

docker run -i -p 24224:24224 icr.io/ibmz/fluent-bit:1.7.1 /fluent-bit/bin/fluent-bit -i forward -o stdout -p format=json_lines -f 1 

Now run a separate container that will send a test message. This time the Docker container will use the Fluent Forward Protocol as the logging driver:

docker run --log-driver=fluentd -t icr.io/ibmz/ubuntu:22.04 echo "Testing a log message"

You will see the stdout print on the fluent-bit container!