You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: concepts/data-pipeline.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
The Fluent Bit data pipeline incorporates several specific concepts.
4
4
5
-
## Buffering
5
+
## Buffer
6
6
7
7
The [`buffer`](./buffering.md) phase in the pipeline aims to provide a unified and persistent mechanism to store your data, using the primary in-memory model or the file system-based mode.
8
+
9
+
## Filter
10
+
11
+
In production environments you need full control of the data you're collecting. Filtering lets you alter the collected data before delivering it to a destination.
12
+
For more details about the Filters available and their usage, see [Filters](https://docs.fluentbit.io/manual/pipeline/filters).
Copy file name to clipboardExpand all lines: pipeline/filters.md
+1-7Lines changed: 1 addition & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,4 @@
1
-
---
2
-
description: Modify, enrich or drop your records
3
-
---
4
-
5
-
# Filter
1
+
# Filters
6
2
7
3
In production environments you need full control of the data you're collecting. Filtering lets you alter the collected data before delivering it to a destination.
8
4
@@ -25,5 +21,3 @@ Filtering is implemented through plugins. Each available filter can be used to m
25
21
Fluent Bit support many filters. A common use case for filtering is Kubernetes deployments. Every pod log needs the proper metadata associated with it.
26
22
27
23
Like input plugins, filters run in an instance context, which has its own independent configuration. Configuration keys are often called _properties_.
28
-
29
-
For more details about the Filters available and their usage, see [Filters](https://docs.fluentbit.io/manual/pipeline/filters).
0 commit comments