We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40311a commit 0eb5d33Copy full SHA for 0eb5d33
pipeline/inputs/forward.md
@@ -42,6 +42,8 @@ In the example the Forward messages will only arrive through network interface u
42
43
In your main configuration file append the following _Input_ & _Output_ sections:
44
45
+{% tabs %}
46
+{% tab title="fluent-bit.conf" %}
47
```python
48
[INPUT]
49
Name forward
@@ -54,6 +56,24 @@ In your main configuration file append the following _Input_ & _Output_ sections
54
56
Name stdout
55
57
Match *
58
```
59
+{% endtab %}
60
+
61
+{% tab title="fluent-bit.yaml" %}
62
+```yaml
63
+pipeline:
64
+ inputs:
65
+ - name: forward
66
+ listen: 0.0.0.0
67
+ port: 24224
68
+ buffer_chunk_size: 1M
69
+ buffer_max_size: 6M
70
+ outputs:
71
+ - name: stdout
72
+ match: '*'
73
+```
74
75
+{% endtabs %}
76
77
78
## Testing
79
0 commit comments