Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.18 KB

File metadata and controls

29 lines (23 loc) · 1.18 KB
description
Destinations for your data: databases, cloud services and more!

Output

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.

graph LR
    accTitle: Fluent Bit data pipeline
    accDescr: The Fluent Bit data pipeline includes input, a parser, a filter, a buffer, routing, and various outputs.
    A[Input] --> B[Parser]
    B --> C[Filter]
    C --> D[Buffer]
    D --> E((Routing))
    E --> F[Output 1]
    E --> G[Output 2]
    E --> H[Output 3]
    style F stroke:darkred,stroke-width:2px;
    style G stroke:darkred,stroke-width:2px;
    style H stroke:darkred,stroke-width:2px;
Loading

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

Every output plugin has its own documentation section specifying how it can be used and what properties are available.

For more details, please refer to the Output Plugins section.