Contribution guide for beginners
If you have some knowledge of C, this guide should help you understand how to make code changes to Fluent Bit.
Libraries
Most external libraries are embedded in the project in the /lib folder. To keep its footprint low and maximize compatibility in cross-platform builds, Fluent Bit attempts to keep its dependency graph small.
The external library that you're mostly likely to interact with is MessagePack.
For cryptographic support, Fluent Bit uses the system installed version of OpenSSL. You must install OpenSSL libraries and headers before Building Fluent Bit.
Memory management
When you write Fluent Bit code, you'll use the Fluent Bit versions of the standard C functions for working with memory:
flb_malloc(): Equivalent tomalloc, allocates memory.flb_calloc(): Equivalent tocalloc, allocates memory and initializes it to zero.flb_realloc(): Equivalent torealloc.flb_free(): Equivalent tofree, releases allocated memory.
Strings
Fluent Bit has a stripped down version of the popular SDS string library. See flb_sds.h for the API.
In general, you should use SDS strings in any string processing code. SDS strings are fully compatible with any C function that accepts a null-terminated sequence of characters. To understand how they work, see the explanation on Github.
HTTP client
Fluent Bit has its own network connection library. The key types and functions are defined in the following header files:
The following code demonstrates an HTTP request in Fluent Bit:
The flb_upstream structure represents the host/endpoint that you want to call. Normally, you'd store this structure somewhere so that it can be reused. An flb_upstream_conn represents a connection to that host for a single HTTP request. This connection structure shouldn't be used for more than one request.
Linked lists
Fluent Bit contains a library for constructing linked lists: cfl_list. The type stores data as a circular linked list.
The cfl_list.h header file contains several macros and functions for use with the lists. The following example shows how to create a list, iterate through it, and delete an element.
MessagePack
Fluent Bit uses MessagePack to internally store data. If you write code for Fluent Bit, it's almost certain that you will interact with MessagePack.
Fluent Bit embeds the msgpack-c library. The following example shows how to manipulate message pack to add a new key/value pair to a record. In Fluent Bit, the filter_record_modifier plugin adds or deletes keys from records. See its code for more.
For more info, see the MessagePack examples in the msgpack-c GitHub repository.
Plugin API
Each plugin is a shared object which is loaded into Fluent Bit using dlopenand dlsym.
Input
The input plugin structure is defined in flb_input.h. There are a number of functions which a plugin can implement, but most only implement cb_init, cb_collect, and cb_exit.
The "dummy" input plugin is very basic and is an excellent example to review to understand more.
Input plugins can use threaded mode if the flag FLB_INPUT_THREADED is provided. To enable threading in your plugin, add the FLB_INPUT_THREADED to the set of flags when registering:
Filter
The structure for filter plugins is defined in flb_filter.h. Each plugin must implement cb_init, cb_filter, and cb_exit.
The filter_record_modifier is a good example of a filter plugin.
Filter plugins can not asynchronously make HTTP requests. If your plugin needs to make a request, add the following code when you initialize your flb_upstream:
Output
Output plugins are defined in flb_output.h. Each plugin must implement cb_init, cb_flush, and cb_exit.
The stdout plugin is very basic; review its code to understand how output plugins work.
Development environment
Fluent Bit provides a standalone environment for development. Developers who use different operating systems or distributions can develop on a basic, common stack. The development environment provides the required libraries and tools for you.
Development environments are provided for:
Testing
During development, you can build Fluent Bit as follows:
To enable the unit tests, run the following command:
Internal tests are for the internal libraries of Fluent Bit. Runtime tests are for the plugins.
You can run the unit tests with make test. However, this is inconvenient in practice. Each test file will create an executable in the build/bin directory, which you can run directly. For example, if you want to run the SDS tests, you can invoke them as follows:
Last updated
Was this helpful?