@@ -35,13 +35,13 @@ From the command line you can let Fluent Bit listen for Forward messages with th
35
35
fluent-bit -i forward -o stdout
36
36
```
37
37
38
- By default the service will listen an all interfaces (` 0.0.0.0 ` ) through TCP port ` 24224 ` . You can change this by passing parameters to the command:
38
+ By default, the service listens on all interfaces (` 0.0.0.0 ` ) through TCP port ` 24224 ` . You can change this by passing parameters to the command:
39
39
40
40
``` bash
41
41
fluent-bit -i forward -p listen=" 192.168.3.2" -p port=9090 -o stdout
42
42
```
43
43
44
- In the example the Forward messages will only arrive through network interface ` 192.168.3.2 ` address and TCP Port ` 9090 ` .
44
+ In the example, the Forward messages arrive only through network interface ` 192.168.3.2 ` address and TCP Port ` 9090 ` .
45
45
46
46
### Configuration file
47
47
@@ -85,7 +85,7 @@ pipeline:
85
85
86
86
## Fluent Bit and Secure Forward Setup
87
87
88
- In Fluent Bit v3 and greater , ` in_forward` can handle secure forward protocol.
88
+ In Fluent Bit v3 or later , ` in_forward` can handle secure forward protocol.
89
89
90
90
For using user-password authentication, specify `security.users` at least an one-pair.
91
91
For using shared key, specify `shared_key` in both of forward output and forward input.
@@ -135,7 +135,7 @@ pipeline:
135
135
136
136
# # Testing
137
137
138
- Once Fluent Bit is running, you can send some messages using the `fluent-cat` tool, provided by [Fluentd](http://www.fluentd.org) :
138
+ After Fluent Bit is running, you can send some messages using the `fluent-cat` tool, provided by [Fluentd](http://www.fluentd.org) :
139
139
140
140
` ` ` bash
141
141
echo '{"key 1": 123456789, "key 2": "abcdefg"}' | fluent-cat my_tag
0 commit comments