Skip to content

Concepts: minor vale issue corrections #2012

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion concepts/buffering.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
4 changes: 2 additions & 2 deletions concepts/data-pipeline/router.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion concepts/key-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_.

Expand Down