You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: administration/configuring-fluent-bit/yaml.md
-38Lines changed: 0 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,41 +20,3 @@ YAML configuration files support the following top-level sections:
20
20
{% hint style="info" %}
21
21
YAML configuration is used in the smoke tests for containers. An always-correct up-to-date example is here: <https://github.com/fluent/fluent-bit/blob/master/packaging/testing/smoke/container/fluent-bit.yaml>.
22
22
{% endhint %}
23
-
24
-
----
25
-
26
-
27
-
## List of available sections
28
-
29
-
Configuring Fluent Bit with YAML introduces the following root-level sections:
30
-
31
-
| Section Name | Description |
32
-
|--------------|-------------|
33
-
|`service`| Describes the global configuration for the Fluent Bit service. Optional. If not set, default values will apply. Only one `service` section can be defined. |
34
-
|`parsers`| Lists parsers to be used by components like inputs, processors, filters, or output plugins. You can define multiple `parsers` sections, which can also be loaded from external files included in the main YAML configuration. |
35
-
|`multiline_parsers`| Lists multiline parsers, functioning similarly to `parsers`. Multiple definitions can exist either in the root or in included files. |
36
-
|`pipeline`| Defines a pipeline composed of inputs, processors, filters, and output plugins. You can define multiple `pipeline` sections, but they won't operate independently. Instead, all components will be merged into a single pipeline internally. |
37
-
|`plugins`| Specifies the path to external plugins (`.so` files) to be loaded by Fluent Bit at runtime. |
38
-
|`upstream_servers`| Refers to a group of node endpoints that can be referenced by output plugins that support this feature. |
39
-
|`env`| Sets a list of environment variables for Fluent Bit. System environment variables are available, while the ones defined in the configuration apply only to Fluent Bit. |
40
-
41
-
## Section documentation
42
-
43
-
To access detailed configuration guides for each section, use the following links:
Copy file name to clipboardExpand all lines: administration/configuring-fluent-bit/yaml/pipeline-section.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Unlike filters, processors and parsers aren't defined within a unified section o
16
16
17
17
## Format
18
18
19
-
A `pipeline` section will define a complete pipeline configuration, including `inputs`, `filters`, and `outputs` subsections.
19
+
A `pipeline` section will define a complete pipeline configuration, including `inputs`, `filters`, and `outputs` subsections. You can define multiple `pipeline` sections, but they won't operate independently. Instead, all components will be merged into a single pipeline internally.
0 commit comments