File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -152,6 +152,8 @@ could use a `parser.conf` that captures the whole message line:
152152
153153then use that in the ` parser ` clause of the stdin plugin in the ` fluent-bit.conf ` :
154154
155+ {% tabs %}
156+ {% tab title="fluent-bit.conf" %}
155157```
156158[INPUT]
157159 Name stdin
@@ -162,6 +164,21 @@ then use that in the `parser` clause of the stdin plugin in the `fluent-bit.conf
162164 Name stdout
163165 Match *
164166```
167+ {% endtab %}
168+
169+ {% tab title="fluent-bit.yaml" %}
170+ ``` yaml
171+ pipeline :
172+ inputs :
173+ - name : stdin
174+ tag : stdin
175+ parser : stringify_message
176+ outputs :
177+ - name : stdout
178+ match : ' *'
179+ ` ` `
180+ {% endtab %}
181+ {% endtabs %}
165182
166183Fluent Bit will now read each line and emit a single message for each input
167184line:
You can’t perform that action at this time.
0 commit comments