Skip to content

Commit 5744a9a

Browse files
concepts: data-pipeline: filter: Add Mermaid chart
Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent 71e5a51 commit 5744a9a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

concepts/data-pipeline/filter.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ description: Modify, Enrich or Drop your records
66

77
In production environments we want to have full control of the data we are collecting, filtering is an important feature that allows us to **alter** the data before delivering it to some destination.
88

9-
![](<../../.gitbook/assets/logging\_pipeline\_filter (1) (2) (2) (2) (2) (2) (2) (1).png>)
9+
```mermaid
10+
graph LR
11+
accTitle: Fluent Bit data pipeline
12+
accDescr: The Fluent Bit data pipeline includes input, a parser, a filter, a buffer, routing, and various outputs.
13+
A[Input] --> B[Parser]
14+
B --> C[Filter]
15+
C --> D[Buffer]
16+
D --> E((Routing))
17+
E --> F[Output 1]
18+
E --> G[Output 2]
19+
E --> H[Output 3]
20+
style C stroke:darkred,stroke-width:2px;
21+
```
1022

1123
Filtering is implemented through plugins, so each filter available could be used to match, exclude or enrich your logs with some specific metadata.
1224

0 commit comments

Comments
 (0)