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: installation/docker.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,3 +86,4 @@ Alpine Linux uses Musl C library instead of Glibc. Musl is not fully compatible
86
86
Our Docker containers images are deployed thousands of times per day, we take security and stability very seriously.
87
87
88
88
The _latest_ tag _most of the time_ points to the latest stable image. When we release a major update to Fluent Bit like for example from v1.3.x to v1.4.0, we don't move _latest_ tag until 2 weeks after the release. That give us extra time to verify with our community that everything works as expected.
Copy file name to clipboardExpand all lines: pipeline/inputs/tail.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ In your main configuration file append the following _Input_ & _Output_ sections
81
81
82
82
### Multi-line example
83
83
84
-
When using multi-line configuration you need to first specify `Multiline On` in the configuration and use the `Parser_Firstline` and additional parser parameters `Parser_N` if needed. If we are trying to read the following Java Stacktrace as a single event
84
+
When using multi-line configuration you need to first specify `Multiline On` in the configuration and use the `Parser_Firstline` and additional parser parameters `Parser_N` if needed. If we are trying to read the following Java Stacktrace as a single event
85
85
86
86
```text
87
87
Dec 14 06:41:08 Exception in thread "main" java.lang.RuntimeException: Something has gone wrong, aborting!
@@ -92,7 +92,7 @@ Dec 14 06:41:08 Exception in thread "main" java.lang.RuntimeException: Something
92
92
at com.myproject.module.MyProject.main(MyProject.java:6)
93
93
```
94
94
95
-
We need to specify a `Parser_Firstline` parameter that matches the first line of a multi-line event. Once a match is made Fluent Bit will read all future lines until another match with `Parser_Firstline` is made .
95
+
We need to specify a `Parser_Firstline` parameter that matches the first line of a multi-line event. Once a match is made Fluent Bit will read all future lines until another match with `Parser_Firstline` is made .
96
96
97
97
In the case above we can use the following parser, that extracts the Time as `time` and the remaining portion of the multiline as `log`
98
98
@@ -115,7 +115,7 @@ If we want to further parse the entire event we can add additional parsers with
0 commit comments