-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into out-es-custom-http-headers
Signed-off-by: esmerel <[email protected]>
- Loading branch information
Showing
181 changed files
with
3,552 additions
and
1,160 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ _book/* | |
node_modules/* | ||
.gitignore | ||
old/* | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
StylesPath = vale-styles | ||
MinAlertLevel = suggestion # suggestion, warning or error | ||
|
||
[formats] | ||
mdx = md | ||
|
||
[*.{md,markdown,txt,htm,html}] | ||
BasedOnStyles = FluentBit | ||
IgnoredScopes = tt, code | ||
|
||
FluentBit.Terms = YES | ||
FluentBit.Titles = YES | ||
FluentBit.FutureTense = NO | ||
FluentBit.Headings = NO | ||
FluentBit.Passive = NO | ||
FluentBit.Subjunctive = NO | ||
FluentBit.Colons = NO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,45 @@ | ||
--- | ||
description: The Production Grade Telemetry Ecosystem | ||
description: The production grade telemetry ecosystem | ||
--- | ||
|
||
# Fluentd & Fluent Bit | ||
# Fluentd and Fluent Bit | ||
|
||
Telemetry data processing in general can be complex, and at scale a bit more, that's why [Fluentd](https://www.fluentd.org) was born. Fluentd has become more than a simple tool, it has grown into a fullscale ecosystem that contains SDKs for different languages and sub-projects like [Fluent Bit](https://fluentbit.io). | ||
Telemetry data processing can be complex, especially at scale. That's why | ||
[Fluentd](https://www.fluentd.org) was created. Fluentd is more than a simple tool, | ||
it's grown into a fullscale ecosystem that contains SDKs for different languages | ||
and subprojects like [Fluent Bit](https://fluentbit.io). | ||
|
||
On this page, we will describe the relationship between the [Fluentd](http://fluentd.org) and [Fluent Bit](http://fluentbit.io) open source projects, as a summary we can say both are: | ||
Here, we describe the relationship between the [Fluentd](http://fluentd.org) | ||
and [Fluent Bit](http://fluentbit.io) open source projects. | ||
|
||
* Licensed under the terms of Apache License v2.0 | ||
* **Graduated** Hosted projects by the [Cloud Native Computing Foundation (CNCF)](https://cncf.io) | ||
* Production Grade solutions: deployed **million** of times every single day. | ||
* **Vendor neutral** and community driven projects | ||
* Widely Adopted by the Industry: trusted by all major companies like AWS, Microsoft, Google Cloud and hundreds of others. | ||
Both projects are: | ||
|
||
Both projects share a lot of similarities, [Fluent Bit](https://fluentbit.io) is fully designed and built on top of the best ideas of [Fluentd](https://www.fluentd.org) architecture and general design. Choosing which one to use depends on the end-user needs. | ||
- Licensed under the terms of Apache License v2.0. | ||
- Graduated hosted projects by the [Cloud Native Computing Foundation (CNCF)](https://cncf.io). | ||
- Production grade solutions: Deployed millions of times every single day. | ||
- Vendor neutral and community driven. | ||
- Widely adopted by the industry: Trusted by major companies like AWS, Microsoft, | ||
Google Cloud, and hundreds of others. | ||
|
||
The projects have many similarities: [Fluent Bit](https://fluentbit.io) is | ||
designed and built on top of the best ideas of [Fluentd](https://www.fluentd.org) | ||
architecture and general design. Which one you choose depends on your end-users' needs. | ||
|
||
The following table describes a comparison of different areas of the projects: | ||
|
||
| | Fluentd | Fluent Bit | | ||
| ------------ | ----------------------------------------------------------------- | ----------------------------------------------------------------- | | ||
| Scope | Containers / Servers | Embedded Linux / Containers / Servers | | ||
| Language | C & Ruby | C | | ||
| Memory | > 60MB | \~1MB | | ||
| Performance | Medium Performance | High Performance | | ||
| Dependencies | Built as a Ruby Gem, it requires a certain number of gems. | Zero dependencies, unless some special plugin requires them. | | ||
| Plugins | More than 1000 external plugins are available | More than 100 built-in plugins are available | | ||
| Attribute | Fluentd | Fluent Bit | | ||
| ------------ | --------------------- | --------------------- | | ||
| Scope | Containers / Servers | Embedded Linux / Containers / Servers | | ||
| Language | C & Ruby | C | | ||
| Memory | Greater than 60 MB | Approximately 1 MB | | ||
| Performance | Medium Performance | High Performance | | ||
| Dependencies | Built as a Ruby Gem, depends on other gems. | Zero dependencies, unless required by a plugin. | | ||
| Plugins | Over 1,000 external plugins available. | Over 100 built-in plugins available. | | ||
| License | [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0) | [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0) | | ||
|
||
Both [Fluentd](https://www.fluentd.org) and [Fluent Bit](https://fluentbit.io) can work as Aggregators or Forwarders, they both can complement each other or use them as standalone solutions.\ | ||
\ | ||
In the recent years, Cloud Providers switched from Fluentd to Fluent Bit for performance and compatibility reasons. Fluent Bit is now considered the **next generation** solution. | ||
Both [Fluentd](https://www.fluentd.org) and [Fluent Bit](https://fluentbit.io) | ||
can work as Aggregators or Forwarders, and can complement each other or be used | ||
as standalone solutions. | ||
|
||
In the recent years, cloud providers have switched from Fluentd to Fluent Bit for | ||
performance and compatibility. Fluent Bit is now considered the next-generation solution. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
--- | ||
title: A brief history of Fluent Bit | ||
description: Every project has a story | ||
--- | ||
|
||
# A Brief History of Fluent Bit | ||
# A brief history of Fluent Bit | ||
|
||
On 2014, the [Fluentd](https://www.fluentd.org/) team at [Treasure Data](https://www.treasuredata.com/) was forecasting the need for a lightweight log processor for constraint environments like Embedded Linux and Gateways, the project aimed to be part of the Fluentd Ecosystem; at that moment, Eduardo created [Fluent Bit](https://fluentbit.io/), a new open source solution written from scratch available under the terms of the [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0).\ | ||
In 2014, the [Fluentd](https://www.fluentd.org/) team at | ||
[Treasure Data](https://www.treasuredata.com/) was forecasting the need for a | ||
lightweight log processor for constraint environments like embedded Linux and | ||
gateways. The project aimed to be part of the Fluentd ecosystem. At that moment, | ||
Eduardo Silva created [Fluent Bit](https://fluentbit.io/), a new open source solution, | ||
written from scratch and available under the terms of the | ||
[Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0). | ||
|
||
|
||
After the project was around for some time, it got more traction for normal Linux systems, also with the new containerized world, the Cloud Native community asked to extend the project scope to support more sources, filters, and destinations. Not so long after, Fluent Bit became one of the preferred solutions to solve the logging challenges in Cloud environments. | ||
After the project matured, it gained traction for normal Linux systems. With the | ||
new containerized world, the Cloud Native community asked to extend the | ||
project scope to support more sources, filters, and destinations. Not long after, | ||
Fluent Bit became one of the preferred solutions to solve the logging challenges | ||
in Cloud environments. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.