Skip to content

Commit b0c47f4

Browse files
committed
Clarifying language around parser configuration and YAML
Signed-off-by: Lynette Miles <[email protected]>
1 parent 39c3205 commit b0c47f4

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

administration/configuring-fluent-bit.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ Fluent Bit supports two configuration formats:
1010
Fluent Bit exposes most of it features through the command line interface. Running the `-h` option you can get a list of the options available:
1111

1212
```shell
13-
$ docker run --rm -it fluent/fluent-bit --help
13+
docker run --rm -it fluent/fluent-bit --help
14+
```
15+
16+
Which returns the following help text:
17+
18+
```text
1419
Usage: /fluent-bit/bin/fluent-bit [OPTION]
1520
1621
Available Options

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Parsers
22

3-
Parsers enable Fluent Bit components to transform unstructured data into a structured internal representation. You can define parsers either directly in the main configuration file or in separate external files for better organization.
3+
Parsers enable Fluent Bit components to transform unstructured data into a structured internal representation. You can define YAML parsers either directly in the main configuration file or in separate external files for better organization.
44

55
This page provides a general overview of how to declare parsers.
66

pipeline/parsers/configuring-parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ By default, Fluent Bit provides a set of pre-configured parsers that can be used
1515
- Syslog rfc5424
1616
- Syslog rfc3164
1717

18-
Parsers are defined in one or more configuration files that are loaded at start time, either from the command line or through the main Fluent Bit configuration file.
18+
Parsers are defined in configuration files that are loaded at start time, through the main Fluent Bit configuration file (YAML or classic), or using one or more external configuration files. Parsers can also be loaded from the command line.
1919

2020
{% hint style="info" %}
2121

0 commit comments

Comments
 (0)