Skip to content

Commit 569b512

Browse files
Merge pull request #1888 from fluent/alexakreizinger/sc-136285/update-fluent-bit-docs-pipeline-processors
2 parents b3ac351 + 2fc7217 commit 569b512

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

pipeline/processors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Additionally, filters can be implemented in a way that mimics the behavior of pr
66

77
{% hint style="info" %}
88

9-
Processors are compatible only with the YAML configuration format. Classic mode configuration files don't support processors.
9+
Only [YAML configuration files](../administration/configuring-fluent-bit/yaml/README.md) support processors.
1010

1111
{% endhint %}
1212

pipeline/processors/filters.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
# Filters as processors
22

3-
Any Fluent Bit [filter](../filters/README.md) can be used as a processor.
3+
You can use any [filter](../filters/README.md) as a processor in Fluent Bit.
44

55
{% hint style="info" %}
66

7-
**Note:** When used as processors they can be enabled only by using the YAML configuration format. Classic mode
8-
configuration format doesn't support processors.
7+
Only [YAML configuration files](../administration/configuring-fluent-bit/yaml/README.md) support processors.
98

109
{% endhint %}
1110

1211
## Grep example
1312

14-
In this example, the [Grep](../filters/grep.md) filter is used as an output processor that sends log records only if they match a specified regular expression.
13+
In this example, the [Grep](../filters/grep.md) filter is an output processor that sends log records only if they match a specified regular expression.
1514

1615
{% tabs %}
1716
{% tab title="fluent-bit.yaml" %}
@@ -25,12 +24,12 @@ pipeline:
2524
outputs:
2625
- name: stdout
2726
match: '*'
28-
27+
2928
processors:
3029
logs:
3130
- name: grep
3231
regex: log aa
3332
```
3433
3534
{% endtab %}
36-
{% endtabs %}
35+
{% endtabs %}

0 commit comments

Comments
 (0)