Skip to content

Commit 4cea188

Browse files
Apply suggestions from code review
Co-authored-by: Craig Norris <[email protected]> Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent f8acd20 commit 4cea188

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

administration/networking.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ plugin issues a retry.
7373

7474
### Listener backlog
7575

76-
When Fluent Bit listens for incoming connections (for example, in input plugins like HTTP, TCP, OpenTelemetry, Forward, Syslog, and so on), the operating system maintains a queue of pending connections. The `net.backlog` option controls the maximum number of pending connections that can be queued before new connection attempts are refused. Increasing this value can help Fluent Bit handle bursts of incoming connections more gracefully. The default value is `128`.
76+
When Fluent Bit listens for incoming connections (for example, in input plugins like HTTP, TCP, OpenTelemetry, Forward, and Syslog), the operating system maintains a queue of pending connections. The `net.backlog` option controls the maximum number of pending connections that can be queued before new connection attempts are refused. Increasing this value can help Fluent Bit handle bursts of incoming connections more gracefully. The default value is `128`.
7777

7878
{% hint style="info" %}
7979

80-
On Linux, the effective backlog value might be capped by the kernel parameter `net.core.somaxconn`. If you need to allow a higher number of pending connections, you might need to increase this system setting.
80+
On Linux, the effective backlog value might be capped by the kernel parameter `net.core.somaxconn`. If you need to allow a greater number of pending connections, you can increase this system setting.
8181

8282
{% endhint %}
8383

pipeline/filters/lua.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ Each extended callback must return four values:
159159

160160
At load time, the Lua filter automatically detects which callback prototype to use based on the number of parameters:
161161

162-
- **Three arguments**: Uses the classic mode (`tag`, `timestamp`, `record`)
163-
- **Five arguments**: Uses the metadata-aware mode (`tag`, `timestamp`, `group`, `metadata`, `record`)
162+
- Three arguments: Uses the classic mode (`tag`, `timestamp`, `record`)
163+
- Five arguments: Uses the metadata-aware mode (`tag`, `timestamp`, `group`, `metadata`, `record`)
164164

165165
This ensures backward compatibility with existing Lua scripts.
166166

pipeline/inputs/tail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ These buffers are per-file. If you're monitoring many files, each file gets its
5454

5555
### From buffers to chunks
5656

57-
Inside each file buffer, multiple lines or records might exist. The plugin processes these records and converts them to MessagePack format (binary serialization). This MessagePack data is then appended to what Fluent Bit calls a _chunk_: a collection of serialized records that belong to the same tag.
57+
Inside each file buffer, multiple lines or records might exist. The plugin processes these records and converts them to MessagePack format (binary serialization). This MessagePack data is then appended to what Fluent Bit calls a _chunk_, which is a collection of serialized records that belong to the same tag.
5858

5959
Although Fluent Bit has a soft limit of 2&nbsp;MB for chunks, input plugins like Tail can generate MessagePack buffers larger than 2&nbsp;MB, and the final chunk can exceed this soft limit.
6060

0 commit comments

Comments
 (0)