Skip to content

Commit 9d0851e

Browse files
committed
Fixing links for readmes
Signed-off-by: Lynette Miles <[email protected]>
1 parent 51b3c5e commit 9d0851e

File tree

10 files changed

+24
-23
lines changed

10 files changed

+24
-23
lines changed

administration/configuring-fluent-bit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Fluent Bit supports two configuration formats:
44

5-
- [YAML](yaml/README.md): Standard configuration format as of v3.2.
6-
- [Classic mode](classic-mode/README.md): To be deprecated at the end of 2026.
5+
- [YAML](./configuring-fluent-bit/yaml.md): Standard configuration format as of v3.2.
6+
- [Classic mode](./configuring-fluent-bit/classic-mode/README.md): To be deprecated at the end of 2026.
77

88
## Command line interface
99

administration/multithreading.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ timers, receiving internal messages, scheduling flushes, and handling retries.
99
This event loop runs in the main Fluent Bit thread.
1010

1111
To free up resources in the main thread, you can configure
12-
[inputs](../pipeline/inputs/README.md) and [outputs](../pipeline/outputs/README.md)
12+
[inputs](../pipeline/inputs.md) and [outputs](../pipeline/outputs.md)
1313
to run in their own self-contained threads. However, inputs and outputs implement
1414
multithreading in distinct ways: inputs can run in `threaded` mode, and outputs
1515
can use one or more `workers`.
1616

1717
Threading also affects certain processes related to inputs and outputs. For example,
18-
[filters](../pipeline/filters/README.md) always run in the main thread, but
19-
[processors](../pipeline/processors/README.md) run in the self-contained threads of
18+
[filters](../pipeline/filters.md) always run in the main thread, but
19+
[processors](../pipeline/processors.md) run in the self-contained threads of
2020
their respective inputs or outputs, if applicable.
2121

2222
## Inputs

pipeline/processors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Processors
22

3-
Processors are components that modify, transform, or enhance data as it flows through Fluent Bit. Unlike [filters](../filters/README.md), processors are tightly coupled to inputs, which means they execute immediately and avoid creating a performance bottleneck.
3+
Processors are components that modify, transform, or enhance data as it flows through Fluent Bit. Unlike [filters](filters.md), processors are tightly coupled to inputs, which means they execute immediately and avoid creating a performance bottleneck.
44

55
Additionally, filters can be implemented in a way that mimics the behavior of processors, but processors can't be implemented in a way that mimics filters.
66

pipeline/processors/conditional-processing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Conditional processing
22

3-
Conditional processing lets you selectively apply [processors](README.md) to logs based on the value of fields within those logs. This feature lets you create processing pipelines that only process records that meet certain criteria, and ignore the rest.
3+
Conditional processing lets you selectively apply [processors](../processors.md) to logs based on the value of fields within those logs. This feature lets you create processing pipelines that only process records that meet certain criteria, and ignore the rest.
44

55
Conditional processing is available in Fluent Bit version 4.0 and greater.
66

@@ -10,8 +10,8 @@ You can turn a standard processor into a conditional processor by adding a `cond
1010

1111
{% hint style="info" %}
1212

13-
- Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/README.md) support processors, including conditional processors.
14-
- Conditional processing isn't supported if you're using a [filter as a processor](../filters).
13+
- Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml.md) support processors, including conditional processors.
14+
- Conditional processing isn't supported if you're using a [filter as a processor](../filters.md).
1515

1616
{% endhint %}
1717

pipeline/processors/content-modifier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Similar to how filters work, this processor uses a unified mechanism to perform
66

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

9-
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/README.md) support processors.
9+
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml.md) support processors.
1010

1111
{% endhint %}
1212

pipeline/processors/filters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Filters as processors
22

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

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

7-
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/README.md) support processors.
7+
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml.md) support processors.
88

99
{% endhint %}
1010

@@ -33,4 +33,4 @@ pipeline:
3333
```
3434
3535
{% endtab %}
36-
{% endtabs %}
36+
{% endtabs %}

pipeline/processors/labels.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Similar to filters, this processor presents an enriching/modifying mechanism to
66

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

9-
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/README.md) support processors.
9+
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml.md) support processors.
1010

1111
{% endhint %}
1212

@@ -36,7 +36,7 @@ pipeline:
3636
metrics:
3737
- name: labels
3838
update: name fluentbit
39-
39+
4040
outputs:
4141
- name : stdout
4242
match: '*'
@@ -86,7 +86,7 @@ pipeline:
8686
metrics:
8787
- name: labels
8888
upsert: name fluentbit
89-
89+
9090
outputs:
9191
- name : stdout
9292
match: '*'
@@ -111,7 +111,7 @@ pipeline:
111111
metrics:
112112
- name: labels
113113
delete: name
114-
114+
115115
outputs:
116116
- name : stdout
117117
match: '*'
@@ -143,4 +143,4 @@ pipeline:
143143
```
144144

145145
{% endtab %}
146-
{% endtabs %}
146+
{% endtabs %}

pipeline/processors/opentelemetry-envelope.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The _OpenTelemetry envelope_ processor transforms your data to be compatible wit
66

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

9-
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/README.md) support processors.
9+
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml.md) support processors.
1010

1111
{% endhint %}
1212

@@ -178,4 +178,5 @@ The collector JSON output will resemble the following:
178178
}
179179
```
180180

181-
For more details about further processing, read the [content modifier](../processors/content-modifier.md) processor documentation.
181+
For more details about further processing, read the [content
182+
modifier](../processors/content-modifier.md) processor documentation.

pipeline/processors/sampling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The _sampling_ processor uses an extendable architecture that supports multiple
44

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

7-
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/README.md) support processors.
7+
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml.md) support processors.
88

99
{% endhint %}
1010

pipeline/processors/sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This processor differs from the stream processor interface that runs after filte
66

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

9-
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/README.md) support processors.
9+
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml.md) support processors.
1010

1111
{% endhint %}
1212

@@ -82,4 +82,4 @@ The resulting output resembles the following:
8282
"date": 1711059261.630668,
8383
"http_domain": "fluentbit.io"
8484
}
85-
```
85+
```

0 commit comments

Comments
 (0)