Skip to content

Commit 26a9ffe

Browse files
authored
multithreading: minor style updateS (#1504)
Signed-off-by: Lynette Miles <[email protected]>
1 parent 5d8a650 commit 26a9ffe

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

administration/multithreading.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ description: Learn how to run Fluent Bit in multiple threads for improved scalab
66

77
Fluent Bit has one event loop to handle critical operations, like managing
88
timers, receiving internal messages, scheduling flushes, and handling retries.
9-
This event loop runs in Fluent Bit's main thread.
9+
This event loop runs in the main Fluent Bit thread.
1010

1111
To free up resources in the main thread, you can configure
1212
[inputs](../pipeline/inputs/README.md) and [outputs](../pipeline/outputs/README.md)
1313
to run in their own self-contained threads. However, inputs and outputs implement
14-
multithreading in distinct ways: inputs can run in **threaded** mode, and outputs
15-
can use one or more **workers**.
14+
multithreading in distinct ways: inputs can run in threaded mode, and outputs
15+
can use one or more workers.
1616

17-
Threading also affects certain processes related to inputs and outputs. For example,
17+
Threading also affects certain processes related to inputs and outputs. For example,
1818
[filters](../pipeline/filters/README.md) always run in the main thread, but
1919
[processors](../pipeline/processors/README.md) run in the self-contained threads of
2020
their respective inputs or outputs, if applicable.
2121

2222
## Inputs
2323

2424
When inputs collect telemetry data, they can either perform this process
25-
inside Fluent Bit's main thread or inside a separate dedicated thread. You can
25+
inside the main Fluent Bit thread or inside a separate dedicated thread. You can
2626
configure this behavior by enabling or disabling the `threaded` setting.
2727

2828
All inputs are capable of running in threaded mode, but certain inputs always
@@ -33,7 +33,7 @@ run in threaded mode regardless of configuration. These always-threaded inputs a
3333
- [Process Exporter Metrics](../pipeline/inputs/process-exporter-metrics.md)
3434
- [Windows Exporter Metrics](../pipeline/inputs/windows-exporter-metrics.md)
3535

36-
Inputs are not internally aware of multithreading. If an input runs in threaded
36+
Inputs aren't internally aware of multithreading. If an input runs in threaded
3737
mode, Fluent Bit manages the logistics of that input's thread.
3838

3939
## Outputs

vale-styles/FluentBit/Spelling-exceptions.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ matchers
8989
Minishift
9090
minikube
9191
MTTx
92+
multithreading
9293
namespace
9394
namespaces
9495
Nginx

0 commit comments

Comments
 (0)