Skip to content

Commit 22fdbc2

Browse files
fix the fix
Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent 85532d4 commit 22fdbc2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

administration/configuring-fluent-bit/yaml/pipeline-section.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ The `pipeline` section defines the flow of how data is collected, processed, and
44

55
| Name | Description |
66
| ---- | ----------- |
7-
| `inputs` | Specifies the name of the plugin responsible for collecting or receiving data. This component serves as the data source in the pipeline. Examples of input plugins include `tail`, `http`, and `random`. Each input plugin defined in a configuration file can have its own `processors` key. |
7+
| `inputs` | Specifies the name of the plugin responsible for collecting or receiving data. This component serves as the data source in the pipeline. Examples of input plugins include `tail`, `http`, and `random`. |
88
| `filters` | Filters are used to transform, enrich, or discard events based on specific criteria. They allow matching tags using strings or regular expressions, providing a more flexible way to manipulate data. Filters run as part of the main event loop and can be applied across multiple inputs and filters. Examples of filters include `modify`, `grep`, and `nest`. |
99
| `outputs` | Defines the destination for processed data. Outputs specify where the data will be sent, such as to a remote server, a file, or another service. Each output plugin is configured with matching rules to determine which events are sent to that destination. Common output plugins include `stdout`, `elasticsearch`, and `kafka`. |
1010

11+
{% hint style="info" %}
12+
13+
Unlike filters, processors and parsers aren't defined within a unified section of YAML configuration files and don't use tag matching. Instead, each input or output defined in the configuration file can have a `parsers` key and `processors` key to configure the parsers and processors for that specific plugin.
14+
15+
{% endhint %}
16+
1117
## Example configuration
1218

1319
Here's an example of a pipeline configuration:

0 commit comments

Comments
 (0)