• Configuration Schema
    • " level="2">Sections
    • " level="2">Entries: Key/Value
    • " level="2">Indented Configuration Mode

    Configuration Schema

    Fluent Bit may use optionally a configuration file to define how the service will behave, and before to proceed we need to understand how the configuration schema works. The schema is defined by three concepts:

    A simple example of a configuration file is as follows:

    1. [SERVICE]
    2. # This is a commented line
    3. Daemon off
    4. log_level debug

    " class="reference-link">Sections

    A section is defined by a name or title inside brackets. Looking at the example above a Server section has been set using [SERVICE] definition. Section rules:

    • All section content must be indented (4 spaces ideally).
    • Multiples sections can exists on the same file.
    • Under a section is expected to have comments and entries, a section cannot be empty.
    • Any commented line under a section, must be indented too.

    " class="reference-link">Entries: Key/Value

    A section may contain Entries, an entry is defined by a line of text that contains a Key and a Value, using the above example, the [SERVICE] section contains two entries, one is the key Daemon with value off and the other the key Log_Level with the value debug. Entries rules:

    • An entry is defined by a key and a value.
    • A key must be indented.
    • A key must contain a value which ends in the breakline.
    • Multiple keys with the same name can exists.

    Also commented lines are set prefixing the # character, those lines are not processed but they must be indented too.

    " class="reference-link">Indented Configuration Mode

    Fluent Bit configuration files are based in a strict Indented Mode, that means that each configuration file must follow the same pattern of alignment from left to right when writing text. By default is suggested an indentation level of four spaces from left to right. Example:

    1. [FIRST_SECTION]
    2. # This is a commented line
    3. Key1 some value
    4. Key2 another value
    5. # more comments
    6. [SECOND_SECTION]
    7. KeyN 3.14

    As you can see there are two sections with multiple entries and comments, note also that empty lines are allowed and they do not need to be indented.