Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion administration/configuring-fluent-bit.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ Fluent Bit supports two configuration formats:
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:

```shell
$ docker run --rm -it fluent/fluent-bit --help
docker run --rm -it fluent/fluent-bit --help
```

Which returns the following help text:

```text
Usage: /fluent-bit/bin/fluent-bit [OPTION]

Available Options
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Parsers

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.
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.

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

Expand Down
2 changes: 1 addition & 1 deletion pipeline/parsers/configuring-parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ By default, Fluent Bit provides a set of pre-configured parsers that can be used
- Syslog rfc5424
- Syslog rfc3164

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.
Parsers are defined in configuration files that are loaded at start time, either through the main Fluent Bit configuration file (YAML or classic) or by using one or more external configuration files. You can also load parsers from the command line.

{% hint style="info" %}

Expand Down