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
- Fix config parameter table keys to use lowercase (buffer_size, parser,
threaded) to match docs standards
- Fix classic config examples to use title case (Name, Format, Regex,
Parsers_File)
- Change code block language from bash to shell for script examples
Fixes#2351
Signed-off-by: Eric D. Schabell <eric@schabell.org>
|`Buffer_Size`| Set the buffer size to read data. This value is used to increase buffer size and must be set according to the [Unit Size](../../administration/configuring-fluent-bit.md#unit-sizes) specification. |`16k`|
19
-
|`Parser`| The name of the parser to invoke instead of the default JSON input parser. |_none_|
20
-
|`Threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
18
+
|`buffer_size`| Set the buffer size to read data. This value is used to increase buffer size and must be set according to the [Unit Size](../../administration/configuring-fluent-bit.md#unit-sizes) specification. |`16k`|
19
+
|`parser`| The name of the parser to invoke instead of the default JSON input parser. |_none_|
20
+
|`threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
21
21
22
22
## Input formats
23
23
@@ -51,7 +51,7 @@ To demonstrate how the plugin works, you can use a `bash` script that generates
51
51
52
52
1. Write the following content in a file named `test.sh`:
53
53
54
-
```bash
54
+
```shell
55
55
#!/bin/sh
56
56
57
57
for((i=0; i<=5; i++));do
@@ -81,7 +81,7 @@ To demonstrate how the plugin works, you can use a `bash` script that generates
81
81
82
82
1. An input event timestamp can also be supplied. Replace `test.sh` with:
83
83
84
-
```bash
84
+
```shell
85
85
#!/bin/sh
86
86
87
87
for ((i=0; i<=5; i++)); do
@@ -118,7 +118,7 @@ To demonstrate how the plugin works, you can use a `bash` script that generates
118
118
119
119
1. Additional metadata is supported in Fluent Bit v2.1.0 and later by replacing the timestamp with a two-element object. For example:
0 commit comments