@@ -6,23 +6,23 @@ description: Learn how to run Fluent Bit in multiple threads for improved scalab
66
77Fluent Bit has one event loop to handle critical operations, like managing
88timers, 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
1111To free up resources in the main thread, you can configure
1212[ inputs] ( ../pipeline/inputs/README.md ) and [ outputs] ( ../pipeline/outputs/README.md )
1313to 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
2020their respective inputs or outputs, if applicable.
2121
2222## Inputs
2323
2424When 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
2626configure this behavior by enabling or disabling the ` threaded ` setting.
2727
2828All 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
3737mode, Fluent Bit manages the logistics of that input's thread.
3838
3939## Outputs
0 commit comments