Skip to content

Commit 58e5869

Browse files
Apply suggestions from code review
Co-authored-by: Lynette Miles <[email protected]> Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent 95f13d6 commit 58e5869

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pipeline/parsers/configuring-parser.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ You can use parsers to transform unstructured log entries into structured log en
44

55
The parser engine is fully configurable and can process log entries based in two formats:
66

7-
* [JSON maps](json.md)
8-
* [Regular expressions](regular-expression.md) (named capture)
7+
- [JSON maps](json.md)
8+
- [Regular expressions](regular-expression.md) (named capture)
99

1010
By default, Fluent Bit provides a set of pre-configured parsers that can be used for different use cases, such as logs from:
1111

12-
* Apache
13-
* NGINX
14-
* Docker
15-
* Syslog rfc5424
16-
* Syslog rfc3164
12+
- Apache
13+
- NGINX
14+
- Docker
15+
- Syslog rfc5424
16+
- Syslog rfc3164
1717

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

@@ -43,7 +43,7 @@ Multiple parsers can be defined and each section has it own properties. The foll
4343

4444
## Parsers configuration file
4545

46-
All parsers **must** be defined in a _parsers.conf_ file, **not** in the Fluent Bit global configuration file. The parsers file exposes all parsers available that can be used by the input plugins that are aware of this feature. A parsers file can have multiple entries, like so:
46+
All parsers must be defined in a `parsers.conf` file, not in the Fluent Bit global configuration file. The parsers file exposes all parsers available that can be used by the input plugins that are aware of this feature. A parsers file can have multiple entries, like so:
4747

4848
```text
4949
[PARSER]
@@ -69,7 +69,7 @@ For more information about the parsers available, refer to the [default parsers
6969

7070
Time resolution and its format supported are handled by using the [strftime\(3\)](http://man7.org/linux/man-pages/man3/strftime.3.html) libc system function.
7171

72-
In addition, Fluent Bit extends its time resolution to support fractional seconds like `017-05-17T15:44:31**.187512963**Z`. Since Fluent Bit v0.12, it supports nanosecond resolution, and the `%L` format option for `Time_Format` is provided as a way to indicate that content must be interpreted as fractional seconds.
72+
In addition, Fluent Bit extends its time resolution to support fractional seconds like `017-05-17T15:44:31**.187512963**Z`. The `%L` format option for `Time_Format` is provided as a way to indicate that content must be interpreted as fractional seconds.
7373

7474
{% hint style="info" %}
7575
The option `%L` is only valid when used after seconds (`%S`) or seconds since the epoch (`%s`). For example, `%S.%L` and `%s.%L` are valid strings.

0 commit comments

Comments
 (0)