Skip to content

Fixes to indentation for Filter docs code examples needing to be 2 space standardized. Fixes #1981. #1982

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Jul 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b473198
Fixing indentation for AWS Metadata filter docs. Part of issue #1981.
eschabell Jul 23, 2025
cc87a5a
Fixing indentation for Checklist filter docs. Part of issue #1981.
eschabell Jul 23, 2025
2e2a83a
Fixing indentation for ECS Metadata filter docs. Part of issue #1981.
eschabell Jul 23, 2025
dccf59e
Fixing indentation for GeoIP2 Filter filters doc. Part of issue #1981.
eschabell Jul 23, 2025
ab9a6f8
Fixing indentation for Grep filters doc. Part of issue #1981.
eschabell Jul 23, 2025
175795a
Fixing indentation for Kubernetes filter doc. Part of issue #1981.
eschabell Jul 23, 2025
fd0285c
Fixing indentation for Log to Metrics filter doc. Part of issue #1981.
eschabell Jul 23, 2025
3ccff2f
Fixing indentation for Log to Lua filter doc. Part of issue #1981.
eschabell Jul 23, 2025
eb2cc05
Fixing grammer and spelling for Grep filter doc. Part of issue #1981.
eschabell Jul 23, 2025
77eb025
Fixing indentation for Modify filter doc. Part of issue #1981.
eschabell Jul 23, 2025
59e9529
Fixing indentation for Multiline filter doc. Part of issue #1981.
eschabell Jul 23, 2025
a32dfac
Fixing indentation for Nest filter doc. Part of issue #1981.
eschabell Jul 23, 2025
f58ae2f
Fixing grammer and spelling for Multiline Stacktrace filter doc. Part…
eschabell Jul 23, 2025
fc08ccd
Fixing indentation for Nightfall filter doc. Part of issue #1981.
eschabell Jul 23, 2025
b070dac
Fixing indentation for Parser filter doc. Part of issue #1981.
eschabell Jul 23, 2025
ad94865
Fixing indentation for Parser filter doc. Part of issue #1981.
eschabell Jul 23, 2025
dc223a4
Fixing indentation for Record Modifier filter doc. Part of issue #1981.
eschabell Jul 23, 2025
2d5dbc1
Fixing indentation for Record Modifier filter doc. Part of issue #1981.
eschabell Jul 23, 2025
429be0f
Fixing indentation for Rewrite Tag filter doc. Part of issue #1981.
eschabell Jul 23, 2025
7e56409
Fixing indentation for Standard Output filter doc. Part of issue #1981.
eschabell Jul 23, 2025
0701154
Fixing indentation for Rewrite Tag filter doc. Part of issue #1981.
eschabell Jul 23, 2025
3a9dcb5
Fixing indentation for Sysinfo filter doc. Part of issue #1981.
eschabell Jul 23, 2025
ef5c491
Fixing indentation for Tensorflow filter doc. Part of issue #1981.
eschabell Jul 23, 2025
9847c6a
Fixing indentation for Throttle filter doc. Part of issue #1981.
eschabell Jul 23, 2025
6e3091a
Fixing indentation for Type Converter filter doc. Part of issue #1981.
eschabell Jul 23, 2025
8c84c4b
Fixing indentation for WASM filter doc. Part of issue #1981.
eschabell Jul 23, 2025
5f284e9
Fixing indentation for Type Converter filter doc. Part of issue #1981.
eschabell Jul 23, 2025
d81fc42
Fixing indentation for Tensorflow filter doc. Part of issue #1981.
eschabell Jul 23, 2025
3ef8c45
Merge branch 'master' into erics-filters-fixes
eschabell Jul 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions pipeline/filters/aws-metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ If you run Fluent Bit logs might look like the following:

#### `tags_exclude`

Suppose the EC2 instance has three tags: `Name:fluent-bit-docs-example`, `project:fluentbit`, and `department:it`. In this example, the `department` tag is redundant and will be excluded. All of the projects belong to the `it` department, and you don't want to waste storage space on redundant labels.
Suppose the EC2 instance has three tags: `Name:fluent-bit-docs-example`, `project:fluentbit`, and `department:it`. In this example, the `department` tag is redundant and will be excluded. All the projects belong to the `it` department, and you don't want to waste storage space on redundant labels.

Here is an example configuration that achieves this:

Expand All @@ -163,22 +163,22 @@ Here is an example configuration that achieves this:
```yaml
pipeline:

filters:
- name: aws
match: '*'
tags_enabled: true
tags_exclude: department
filters:
- name: aws
match: '*'
tags_enabled: true
tags_exclude: department
```

{% endtab %}
{% tab title="fluent-bit.conf" %}

```text
[FILTER]
Name aws
Match *
tags_enabled true
tags_exclude department
Name aws
Match *
tags_enabled true
tags_exclude department
```

{% endtab %}
Expand Down
68 changes: 34 additions & 34 deletions pipeline/filters/checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,51 +22,51 @@ The plugin supports the following configuration parameters

```yaml
pipeline:
inputs:
- name: tail
tag: test1
path: test1.log
read_from_head: true
parser: json

filters:
- name: checklist
match: test1
file: ip_list.txt
lookup_key: $remote_addr
record:
- ioc abc
- badurl null
log_level: debug

outputs:
- name: stdout
match: test1
inputs:
- name: tail
tag: test1
path: test1.log
read_from_head: true
parser: json

filters:
- name: checklist
match: test1
file: ip_list.txt
lookup_key: $remote_addr
record:
- ioc abc
- badurl null
log_level: debug

outputs:
- name: stdout
match: test1
```

{% endtab %}
{% tab title="fluent-bit.conf" %}

```text
[INPUT]
name tail
tag test1
path test1.log
read_from_head true
parser json
name tail
tag test1
path test1.log
read_from_head true
parser json

[FILTER]
name checklist
match test1
file ip_list.txt
lookup_key $remote_addr
record ioc abc
record badurl null
log_level debug
name checklist
match test1
file ip_list.txt
lookup_key $remote_addr
record ioc abc
record badurl null
log_level debug

[OUTPUT]
name stdout
match test1
name stdout
match test1
```

{% endtab %}
Expand Down
Loading