diff --git a/pipeline/processors/README.md b/pipeline/processors/README.md index 15e2ac0e6..388b55880 100644 --- a/pipeline/processors/README.md +++ b/pipeline/processors/README.md @@ -6,7 +6,7 @@ Additionally, filters can be implemented in a way that mimics the behavior of pr {% hint style="info" %} -Processors are compatible only with the YAML configuration format. Classic mode configuration files don't support processors. +Only [YAML configuration files](../administration/configuring-fluent-bit/yaml/README.md) support processors. {% endhint %} diff --git a/pipeline/processors/filters.md b/pipeline/processors/filters.md index ca752d129..ddc65961a 100644 --- a/pipeline/processors/filters.md +++ b/pipeline/processors/filters.md @@ -1,17 +1,16 @@ # Filters as processors -Any Fluent Bit [filter](../filters/README.md) can be used as a processor. +You can use any [filter](../filters/README.md) as a processor in Fluent Bit. {% hint style="info" %} -**Note:** When used as processors they can be enabled only by using the YAML configuration format. Classic mode -configuration format doesn't support processors. +Only [YAML configuration files](../administration/configuring-fluent-bit/yaml/README.md) support processors. {% endhint %} ## Grep example -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. +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. {% tabs %} {% tab title="fluent-bit.yaml" %} @@ -25,7 +24,7 @@ pipeline: outputs: - name: stdout match: '*' - + processors: logs: - name: grep @@ -33,4 +32,4 @@ pipeline: ``` {% endtab %} -{% endtabs %} \ No newline at end of file +{% endtabs %}