Skip to content

Commit 05945fd

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

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

concepts/data-pipeline/buffer.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,19 @@ Previously defined in the [Buffering](../buffering.md) concept section, the `buf
88

99
The `buffer` phase already contains the data in an immutable state, meaning, no other filter can be applied.
1010

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

1325
{% hint style="info" %}
1426
Note that buffered data is not raw text, it's in Fluent Bit's internal binary representation.

0 commit comments

Comments
 (0)