You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example defines the tap pipeline using this configuration: `input=dummy.0 output=stdout output.format=json_lines` which defines the following:
130
+
This example defines the Tap pipeline using this configuration: `input=dummy.0 output=stdout output.format=json_lines` which defines the following:
131
131
132
-
-`input`: `dummy.0`- listens to the tag or alias `dummy.0`
133
-
-`output`: `stdout`- outputs to a stdout plugin
134
-
-`output.format`: `json_lines`- sets the stdout format to `json_lines`
132
+
-`input`: `dummy.0` listens to the tag or alias `dummy.0`.
133
+
-`output`: `stdout` outputs to a stdout plugin.
134
+
-`output.format`: `json_lines` sets the stdout format to `json_lines`.
135
135
136
136
Tap support can also be activated and deactivated using the embedded web server:
137
137
@@ -263,8 +263,8 @@ When activating Tap, any plugin parameter can be given. These parameters can be
263
263
to modify the output format, the name of the time key, the format of the date, and
264
264
other details.
265
265
266
-
The following example uses the parameter ```"format": "json"``` to demonstrate how
267
-
to show `stdout` in `JSON` format.
266
+
The following example uses the parameter `"format": "json"` to demonstrate how
267
+
to show `stdout` in JSON format.
268
268
269
269
First, run Fluent Bit enabling Tap:
270
270
@@ -338,7 +338,7 @@ This filter record is an example to explain the details of a Tap record:
338
338
339
339
-`type`: Defines the stage the event is generated:
340
340
-`1`: Input record. This is the unadulterated input record.
341
-
-`2`: Filtered record. This is a record once it has been filtered. One record is
341
+
-`2`: Filtered record. This is a record after it was filtered. One record is
342
342
generated per filter.
343
343
-`3`: Pre-output record. This is the record right before it's sent for output.
344
344
@@ -380,7 +380,7 @@ Run the following `kill` command to signal Fluent Bit:
380
380
kill -CONT `pidof fluent-bit`
381
381
```
382
382
383
-
The command `pidof` aims to lookup the Process ID of Fluent Bit.
383
+
The command `pidof` aims to identify the Process ID of Fluent Bit.
384
384
385
385
Fluent Bit will dump the following information to the standard output interface
386
386
(`stdout`):
@@ -444,9 +444,9 @@ The Task dump describes the tasks associated to the input plugin:
444
444
| Entry | Description |
445
445
| :--- | :--- |
446
446
|`total_tasks`| Total number of active tasks associated to data generated by the input plugin. |
447
-
|`new`| Number of tasks not assigned yet to an output plugin. Tasks are in `new` status for a very short period of time. This value is normally very low or zero. |
447
+
|`new`| Number of tasks not yet assigned to an output plugin. Tasks are in `new` status for a very short period of time. This value is normally very low or zero. |
448
448
|`running`| Number of active tasks being processed by output plugins. |
449
-
|`size`| Amount of memory used by the Chunks being processed (Total chunks size). |
449
+
|`size`| Amount of memory used by the Chunks being processed (total chunk size). |
0 commit comments