# Filters as processors

You can use any [filter](/manual/4.1/data-pipeline/filters.md) as a processor in Fluent Bit.

{% hint style="info" %}
Only [YAML configuration files](/manual/4.1/administration/configuring-fluent-bit/yaml.md) support processors.
{% endhint %}

## Grep example

In this example, the [Grep](/manual/4.1/data-pipeline/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" %}

```yaml
pipeline:
  inputs:
    - name: tail
      path: lines.txt
      parser: json

  outputs:
    - name: stdout
      match: '*'

      processors:
        logs:
          - name: grep
            regex: log aa
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fluentbit.io/manual/4.1/data-pipeline/processors/filters.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
