diff --git a/concepts/buffering.md b/concepts/buffering.md index 638335c98..5b55c3008 100644 --- a/concepts/buffering.md +++ b/concepts/buffering.md @@ -12,6 +12,6 @@ Network failures or latency in third party service is common. When data can't be Fluent Bit buffering strategies are designed to solve problems associated with backpressure and general delivery failures. Fluent Bit offers a primary buffering mechanism in memory and an optional secondary one using the file system. With this hybrid solution you can accommodate any use case safely and keep a high performance while processing your data. -These mechanisms aren't mutually exclusive. When data is ready to be processed or delivered it's always be in memory, while other data in the queue might be in the file system until is ready to be processed and moved up to memory. +These mechanisms aren't mutually exclusive. When data is ready to be processed or delivered it's always be in memory. Other data in the queue might be in the file system until is ready to be processed and moved up to memory. To learn more about the buffering configuration in Fluent Bit, see [Buffering and Storage](../administration/buffering-and-storage.md). diff --git a/concepts/data-pipeline/router.md b/concepts/data-pipeline/router.md index 3f3ec7719..658f4e4b3 100644 --- a/concepts/data-pipeline/router.md +++ b/concepts/data-pipeline/router.md @@ -78,7 +78,7 @@ pipeline: Routing reads the `Input` `Tag` and the `Output` `Match` rules. If data has a `Tag` that doesn't match at routing time, the data is deleted. -## Routing with Wildcard +## Routing with wildcards Routing is flexible enough to support wildcards in the `Match` pattern. The following example defines a common destination for both sources of data: @@ -122,7 +122,7 @@ pipeline: The match rule is set to `my_*`, which matches any Tag starting with `my_`. -## Routing with Regex +## Routing with regular expressions Routing also provides support for regular expressions with the `Match_Regex` pattern, allowing for more complex and precise matching criteria. The following example demonstrates how to route data from sources based on a regular expression: diff --git a/concepts/key-concepts.md b/concepts/key-concepts.md index ea90c51de..a99c973c5 100644 --- a/concepts/key-concepts.md +++ b/concepts/key-concepts.md @@ -13,7 +13,7 @@ Before diving into [Fluent Bit](https://fluentbit.io) you might want to get acqu - Match - Structured Message -## Event or Record +## Events or records Every incoming piece of data that belongs to a log or a metric that's retrieved by Fluent Bit is considered an _Event_ or a _Record_.