Skip to content

Commit 944dde4

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

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

concepts/data-pipeline/input.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ description: The way to gather data from your sources
66

77
[Fluent Bit](http://fluentbit.io) provides different _Input Plugins_ to gather information from different sources, some of them just collect data from log files while others can gather metrics information from the operating system. There are many plugins for different needs.
88

9-
![](<../../.gitbook/assets/logging\_pipeline\_input (1) (2) (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 A stroke:darkred,stroke-width:2px;
21+
```
1022

1123
When an input plugin is loaded, an internal _instance_ is created. Every instance has its own and independent configuration. Configuration keys are often called **properties**.
1224

0 commit comments

Comments
 (0)