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: MAINTAINERS.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Fluent Bit Documentation Maintainers
2
2
3
-
Fluent Bit is developed and supported by many individuals and companies. The following table list the names of maintainers per components and the company supporting their work.
3
+
Fluent Bit is developed and supported by many individuals and companies. The following table list the names of maintainers per components and the company supporting their work.
4
4
5
5
| Maintainer Name | Documentation portion | Company |
Copy file name to clipboardExpand all lines: administration/configuring-fluent-bit/unit-sizes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Unit sizes
2
2
3
-
Some configuration directives in [Fluent Bit](http://fluentbit.io) refer to unit sizes such as when defining the size of a buffer or specific limits. Plugins like [Tail Input](../../pipeline/inputs/tail), [Forward Input](../../pipeline/inputs/forward.md) or generic properties like [`Mem_Buf_Limit`](../backpressure) use unit sizes.
3
+
Some configuration directives in [Fluent Bit](http://fluentbit.io) refer to unit sizes such as when defining the size of a buffer or specific limits. Plugins like [Tail Input](../../pipeline/inputs/tail.md), [Forward Input](../../pipeline/inputs/forward.md), or generic properties like [`Mem_Buf_Limit`](../backpressure.md) use unit sizes.
4
4
5
5
Fluent Bit v0.11.10 standardized unit sizes across the core and plugins. The following table describes the options that can be used and what they mean:
This log line is a raw string without format. Structuring the log makes it easier to process the data later. If the [regular expression parser](../../pipeline/parsers/regular-expression) is used, the log entry could be converted to:
29
+
This log line is a raw string without format. Structuring the log makes it easier to process the data later. If the [regular expression parser](../../pipeline/parsers/regular-expression.md) is used, the log entry could be converted to:
Copy file name to clipboardExpand all lines: local-testing/validating-your-data-and-structure.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Fluent Bit supports multiple sources and formats. In addition, it provides filte
4
4
5
5
Fluent Bit users are encouraged to integrate data validation in their continuous integration (CI) systems.
6
6
7
-
In a normal production environment, inputs, filters, and outputs are defined in configuration files. Fluent Bit provides the [Expect](../pipeline/filters/expect) filter, which you can use to validate keys and values from your records and take action when an exception is found.
7
+
In a normal production environment, inputs, filters, and outputs are defined in configuration files. Fluent Bit provides the [Expect](../pipeline/filters/expect.md) filter, which you can use to validate keys and values from your records and take action when an exception is found.
8
8
9
9
A simplified view of the data processing pipeline is as follows:
10
10
@@ -20,8 +20,8 @@ IS --> Fil --> OD
20
20
21
21
Consider the following pipeline, which uses a JSON file as its data source and has two filters:
22
22
23
-
-[Grep](../pipeline/filters/grep) to exclude certain records.
24
-
-[Record Modifier](../pipeline/filters/record-modifier) to alter records' content by adding and removing specific keys.
23
+
-[Grep](../pipeline/filters/grep.md) to exclude certain records.
24
+
-[Record Modifier](../pipeline/filters/record-modifier.md) to alter records' content by adding and removing specific keys.
25
25
26
26
```mermaid
27
27
flowchart LR
@@ -37,7 +37,7 @@ record --> stdout
37
37
38
38
Add data validation between each step to ensure your data structure is correct.
39
39
40
-
This example uses the [Expect](../pipeline/filters/expect) filter.
40
+
This example uses the [Expect](../pipeline/filters/expect.md) filter.
41
41
42
42
```mermaid
43
43
flowchart LR
@@ -164,7 +164,7 @@ The following is the Fluent Bit classic parsers file:
164
164
{% endtab %}
165
165
{% endtabs %}
166
166
167
-
If the JSON parser fails or is missing in the [Tail](../pipeline/inputs/tail) input (`parser json`), the Expect filter triggers the `exit` action.
167
+
If the JSON parser fails or is missing in the [Tail](../pipeline/inputs/tail.md) input (`parser json`), the Expect filter triggers the `exit` action.
168
168
169
169
To extend the pipeline, add a Grep filter to match records that map `label` containing a key called `name` with value the `abc`, and add an Expect filter to re-validate that condition:
0 commit comments