Skip to content

Commit 85532d4

Browse files
fix half-baked commit
Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent 4a50687 commit 85532d4

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@ 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`. |
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. |
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,
14-
15-
{% endhint %}
16-
1711
## Example configuration
1812

1913
Here's an example of a pipeline configuration:

0 commit comments

Comments
 (0)