Welcome! In this article, we will walk through the key components of Fluent Bit—input plugins, filter plugins, and output plugins. Fluent Bit efficiently collects, processes, and publishes log data, making it an essential tool for modern log management and analysis.Documentation Index
Fetch the complete documentation index at: https://notes.kodekloud.com/llms.txt
Use this file to discover all available pages before exploring further.

Input Plugins
Input plugins are the starting point for data collection in Fluent Bit. They interface with various data sources, ensuring that logs are correctly captured for further processing. Here are some common input plugins:-
Tail Plugin
The Tail plugin reads data from log files as new entries are written. It is particularly useful for monitoring application logs, such as those from Nginx. -
Systemd Plugin
Use the Systemd plugin to collect logs from the system journal. This is ideal for systems managed by Systemd, capturing both application and service logs. -
TCP Plugin
The TCP plugin listens for logs sent over TCP connections, making it versatile for capturing network-based logging data.
For most deployments, you will often work with the Tail or Systemd plugins, as they cover the majority of log collection scenarios.
Filter Plugins
Once the logs are collected, they often need processing before reaching their final destination. Fluent Bit’s filter plugins facilitate this by transforming, enriching, or screening the raw log data.-
Grep Plugin
The Grep plugin filters log records by using regular expressions. For instance, to capture only logs that contain error messages: -
Modify Plugin
With the Modify plugin, you can add, remove, or alter fields in your log entries. This is useful for including extra context, such as the service name. -
Parser Plugin
The Parser plugin converts unstructured log data (e.g., JSON strings) into a more organized structure for easier analysis.
Filter plugins are essential for cleaning and enriching log data before it reaches the storage or analysis stage.
Output Plugins
After processing, log data is transmitted to designated destinations through output plugins. These plugins ensure that logs are stored in systems where they can be queried and analyzed.-
Elasticsearch (ES) Plugin
The Elasticsearch output plugin sends logs directly to an Elasticsearch instance, offering a centralized solution for log management. -
HTTP Plugin
For more flexibility, the HTTP plugin forwards log data to any HTTP endpoint. This is useful if you have custom endpoints or need to integrate with other systems.