• Collectd
    • " level="2">Configuration Parameters
    • " level="2">Configuration Examples

    Collectd

    The collectd input plugin allows you to receive datagrams from collectd service.

    " class="reference-link">Configuration Parameters

    The plugin supports the following configuration parameters:

    Key Description Default
    Listen Set the address to listen to 0.0.0.0
    Port Set the port to listen to 25826
    TypesDB Set the data specification file /usr/share/collectd/types.db

    " class="reference-link">Configuration Examples

    Here is a basic configuration example.

    1. [INPUT]
    2. Name collectd
    3. Listen 0.0.0.0
    4. Port 25826
    5. TypesDB /usr/share/collectd/types.db,/etc/collectd/custom.db
    6. [OUTPUT]
    7. Name stdout
    8. Match *

    With this configuration, Fluent Bit listens to 0.0.0.0:25826, and outputs incoming datagram packets to stdout.

    You must set the same types.db files that your collectd server uses. Otherwise, Fluent Bit may not be able to interpret the payload properly.