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
By default, Fluent Bit provides a set of pre-configured parsers that can be used for different use cases, such as logs from:
11
11
12
-
* Apache
13
-
* NGINX
14
-
* Docker
15
-
* Syslog rfc5424
16
-
* Syslog rfc3164
12
+
- Apache
13
+
- NGINX
14
+
- Docker
15
+
- Syslog rfc5424
16
+
- Syslog rfc3164
17
17
18
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.
19
19
@@ -43,7 +43,7 @@ Multiple parsers can be defined and each section has it own properties. The foll
43
43
44
44
## Parsers configuration file
45
45
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:
47
47
48
48
```text
49
49
[PARSER]
@@ -69,7 +69,7 @@ For more information about the parsers available, refer to the [default parsers
69
69
70
70
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.
71
71
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.
73
73
74
74
{% hint style="info" %}
75
75
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