Skip to content

Commit 23b4374

Browse files
committed
concepts: filter: update for style
Signed-off-by: Lynette Miles <[email protected]>
1 parent 1de2cbe commit 23b4374

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

concepts/data-pipeline/filter.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
---
2-
description: Modify, Enrich or Drop your records
2+
description: Modify, enrich or drop your records
33
---
44

55
# Filter
66

7-
In production environments we want to have full control of the data we are collecting, filtering is an important feature that allows us to **alter** the data before delivering it to some destination.
7+
In production environments you want to have full control of the data being collected.
8+
Filtering lets you alter the collected data before delivering it to a destination.
89

910
```mermaid
1011
graph LR
@@ -20,10 +21,14 @@ graph LR
2021
style C stroke:darkred,stroke-width:2px;
2122
```
2223

23-
Filtering is implemented through plugins, so each filter available could be used to match, exclude or enrich your logs with some specific metadata.
24+
Filtering is implemented through plugins. Each available filter could be used to
25+
match, exclude or enrich your logs with specific metadata.
2426

25-
We support many filters, A common use case for filtering is Kubernetes deployments. Every Pod log needs to get the proper metadata associated
27+
Fluent Bit support many filters. A common use case for filtering is Kubernetes
28+
deployments. Every pod log needs the proper metadata associated.
2629

27-
Very similar to the input plugins, Filters run in an instance context, which has its own independent configuration. Configuration keys are often called **properties**.
30+
Like input plugins, filters run in an instance context, which has its own independent
31+
configuration. Configuration keys are often called _properties_.
2832

29-
For more details about the Filters available and their usage, please refer to the [Filters](https://docs.fluentbit.io/manual/pipeline/filters) section.
33+
For more details about the Filters available and their usage, see
34+
[Filters](https://docs.fluentbit.io/manual/pipeline/filters).

0 commit comments

Comments
 (0)