Skip to content

Commit 71e5a51

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

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

concepts/data-pipeline/parser.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,19 @@ description: Convert Unstructured to Structured messages
66

77
Dealing with raw strings or unstructured messages is a constant pain; having a structure is highly desired. Ideally we want to set a structure to the incoming data by the Input Plugins as soon as they are collected:
88

9-
![](<../../.gitbook/assets/logging\_pipeline\_parser (1) (1) (1) (1) (2) (2) (2) (3) (3) (3) (3) (3) (1).png>)
10-
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 B stroke:darkred,stroke-width:2px;
21+
```
1122
The Parser allows you to convert from unstructured to structured data. As a demonstrative example consider the following Apache (HTTP Server) log entry:
1223

1324
```

0 commit comments

Comments
 (0)