Run Fluent Bit as a standalone app
Fluent Bit is an open source Log Processor and Forwarder which allows you to collect any data like metrics and logs from different sources. This integration allows you to send logs from Fluent Bit running as a standalone app and forward them to your Layerlog account.
Install Fluent Bit
If you haven’t installed Fluent Bit yet, you can build it from source according to the instructions from Fluent Bit.
Install and configure the Layerlog plugin
For Linux:
wget -o /fluent-bit/plugins/out_logzio.so \
https://github.com/logzio/fluent-bit-logzio-output/raw/master/build/out_logzio-linux.so
For MacOS:
wget -o /fluent-bit/plugins/out_logzio.so \
https://github.com/logzio/fluent-bit-logzio-output/raw/master/build/out_logzio-macOS.so
For Windows:
wget https://github.com/logzio/fluent-bit-logzio-output/raw/master/build/out_logzio-windows.so
In your Fluent Bit configuration file (fluent-bit.conf by default),
add Layerlog as an output.
Layerlog-Out Plugin for Fluent Bit supports one output stream to Layerlog. We recommend running a new instance for each output stream you need.
For a list of options, see the configuration parameters below the code block. 👇
[OUTPUT]
Name logzio
Match *
logzio_token <<LOG-SHIPPING-TOKEN>>
logzio_url https://<<LISTENER-HOST>>:8071
Parameters
| Parameter | Description | Required/Default |
|---|---|---|
| logzio_token | Your Layerlog log shipping token directs the data securely to your Layerlog Log Management account. The default token is auto-populated in the examples when you’re logged into the Layerlog app as an Admin. Manage your tokens. Replace <<LOG-SHIPPING-TOKEN>> with the token of the account you want to ship to. |
Required |
| logzio_url | Listener URL and port. Replace <<LISTENER-HOST>> with the host for your region. For example, listener.layerlog.com if your account is hosted on AWS US East, or listener-nl.layerlog.com if hosted on Azure West Europe. |
https://listener.layerlog.com:8071 |
| logzio_type | Declare your log type for parsing purposes. Layerlog applies default parsing pipelines to the following list of built-in log types. If you declare another type, contact support for assistance with custom parsing. Can’t contain spaces. | logzio-fluent-bit |
| logzio_debug | Set to true to print debug messages to stdout. |
false |
Run Fluent Bit with the Layerlog plugin
Linux and MacOS:
fluent-bit -e /fluent-bit/plugins/out_logzio.so \
-c /fluent-bit/etc/fluent-bit.conf
Windows:
C:\PROGRA~1\td-agent-bit\bin\fluent-bit.exe -c C:\PROGRA~1\td-agent-bit\conf\fluent-bit.conf -e <<PATH_TO_PLUGIN>>\out_logzio-windows.so
Check Layerlog for your logs
Give your logs some time to get from your system to ours, and then open Kibana.
If you still don’t see your logs, see log shipping troubleshooting.