Skip to content

Commit 3c5311a

Browse files
concepts: data-pipeline: output: Add Mermaid chart
Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent d968a30 commit 3c5311a

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

concepts/data-pipeline/output.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@ description: 'Destinations for your data: databases, cloud services and more!'
66

77
The output interface allows us to define destinations for the data. Common destinations are remote services, local file system or standard interface with others. Outputs are implemented as plugins and there are many available.
88

9-
![](<../../.gitbook/assets/logging\_pipeline\_output (1) (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 F stroke:darkred,stroke-width:2px;
21+
style G stroke:darkred,stroke-width:2px;
22+
style H stroke:darkred,stroke-width:2px;
23+
```
1024

1125
When an output plugin is loaded, an internal _instance_ is created. Every instance has its own independent configuration. Configuration keys are often called **properties**.
1226

0 commit comments

Comments
 (0)