Skip to content

Commit 4dffb3d

Browse files
authored
Fixing one example with indentation not standarized missed previously for Forward input plugin. Part of issue #1802. (#1984)
Signed-off-by: Eric D. Schabell <[email protected]>
1 parent 7679304 commit 4dffb3d

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

pipeline/inputs/forward.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,32 +51,32 @@ In your main configuration file append the following:
5151

5252
```yaml
5353
pipeline:
54-
inputs:
55-
- name: forward
56-
listen: 0.0.0.0
57-
port: 24224
58-
buffer_chunk_size: 1M
59-
buffer_max_size: 6M
60-
61-
outputs:
62-
- name: stdout
63-
match: '*'
54+
inputs:
55+
- name: forward
56+
listen: 0.0.0.0
57+
port: 24224
58+
buffer_chunk_size: 1M
59+
buffer_max_size: 6M
60+
61+
outputs:
62+
- name: stdout
63+
match: '*'
6464
```
6565
6666
{% endtab %}
6767
{% tab title="fluent-bit.conf" %}
6868
6969
```text
7070
[INPUT]
71-
Name forward
72-
Listen 0.0.0.0
73-
Port 24224
74-
Buffer_Chunk_Size 1M
75-
Buffer_Max_Size 6M
71+
Name forward
72+
Listen 0.0.0.0
73+
Port 24224
74+
Buffer_Chunk_Size 1M
75+
Buffer_Max_Size 6M
7676

7777
[OUTPUT]
78-
Name stdout
79-
Match *
78+
Name stdout
79+
Match *
8080
```
8181

8282
{% endtab %}

0 commit comments

Comments
 (0)