Skip to content

Commit 0248eda

Browse files
Merge branch 'master' into outputs_elasticsearch_add_api_key
Signed-off-by: Todd Kennedy <[email protected]>
2 parents e28f945 + f5e40f2 commit 0248eda

File tree

243 files changed

+16161
-11033
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+16161
-11033
lines changed
46.1 KB
Loading
27.7 KB
Loading
25.2 KB
Loading

.github/workflows/pr-lint.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,23 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: ludeeus/action-shellcheck@master
24+
25+
markdownlint:
26+
name: runner / markdownlint
27+
runs-on: ubuntu-latest
28+
steps:
29+
- uses: actions/checkout@v4
30+
- name: markdownlint
31+
uses: prologic/[email protected]
32+
with:
33+
github_token: ${{ secrets.GITHUB_TOKEN }}
34+
reporter: github-pr-review # Change reporter. (Only `github-pr-check` is supported at the moment).
35+
vale:
36+
name: runner / vale
37+
runs-on: ubuntu-latest
38+
steps:
39+
- uses: actions/checkout@v4
40+
- uses: errata-ai/[email protected]
41+
with:
42+
files: all
43+
fail_on_error: true

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules/*
33
.gitignore
44
old/*
55
.DS_Store
6+
.idea/

.markdownlint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"MD007": { "indent": 2 },
55
"MD013": false,
66
"MD025": { "front_matter_title": "false" },
7+
"MD047": false,
78
"MD049": { "style": "underscore" },
89
"no-hard-tabs": false,
910
"whitespace": false,

.vale.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ IgnoredScopes = tt, code
55
[formats]
66
mdx = md
77

8-
[*.{md,markdown,txt,htm,html}]
8+
[*.{md,markdown}]
99
BasedOnStyles = FluentBit
1010

1111
FluentBit.Terms = YES
1212
FluentBit.Titles = YES
1313
FluentBit.FutureTense = NO
14-
FluentBit.Headings = NO
14+
FluentBit.Headings = YES
1515
FluentBit.Passive = NO
1616
FluentBit.Subjunctive = NO
1717
FluentBit.Colons = NO

CONTRIBUTING.md

Lines changed: 118 additions & 113 deletions
Large diffs are not rendered by default.

MAINTAINERS.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fluent Bit Documentation Maintainers
22

3-
Fluent Bit is developed and supported by many individuals and companies. The following table list the names of maintainers per components and the company supporting their work.
3+
Fluent Bit is developed and supported by many individuals and companies. The following table list the names of maintainers per components and the company supporting their work.
44

55
| Maintainer Name | Documentation portion | Company |
66
| :---------------------------------------------------- | ------------------------ | ------------------------------------------------- |
@@ -9,3 +9,5 @@ Fluent Bit is developed and supported by many individuals and companies. The fo
99
| [Jose Lecaros](https://github.com/lecaros) | All | [Chronosphere](https://chronosphere.io) |
1010
| [Lynette Miles](https://github.com/esmerel) | All | [Chronosphere](https://chronosphere.io) |
1111
| [Alexa Kreizinger](https://github.com/alexakreizinger) | All | [Chronosphere](https://chronosphere.io) |
12+
| [Paige Cruz](https://github.com/paigerduty) | All | [Chronosphere](https://chronosphere.io/) |
13+
| [Eric D. Schabell](https://github.com/eschabell) | All | [Chronosphere](https://chronosphere.io/) |

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: High Performance Telemetry Agent for Logs, Metrics and Traces
33
---
44

5-
# Fluent Bit Documentation
5+
# Fluent Bit documentation
66

77
<figure><img src=".gitbook/assets/fluent_bit_logo.png" alt=""><figcaption></figcaption></figure>
88

@@ -24,15 +24,19 @@ description: High Performance Telemetry Agent for Logs, Metrics and Traces
2424
- Connect nearly any source to nearly any destination using preexisting plugins
2525
- Extensibility:
2626
- Write input, filter, or output plugins in the C language
27-
- WASM: [WASM Filter Plugins](development/wasm-filter-plugins.md) or [WASM Input Plugins](development/wasm-input-plugins.md)
27+
- Wasm: [Wasm Filter Plugins](development/wasm-filter-plugins.md) or [Wasm Input Plugins](development/wasm-input-plugins.md)
2828
- Write [Filters in Lua](pipeline/filters/lua.md) or [Output plugins in Golang](development/golang-output-plugins.md)
2929
- [Monitoring](administration/monitoring.md): Expose internal metrics over HTTP in JSON and [Prometheus](https://prometheus.io/) format
30-
- [Stream Processing](stream-processing/introduction.md): Perform data selection and transformation using simple SQL queries
30+
- [Stream Processing](stream-processing/introduction.md): Perform data selection and transformation using basic SQL queries
3131
- Create new streams of data using query results
3232
- Aggregation windows
3333
- Data analysis and prediction: Time series forecasting
3434
- Portable: Runs on Linux, macOS, Windows and BSD systems
3535

36+
### Release notes
37+
38+
For more details about changes in each release, refer to the [official release notes](https://fluentbit.io/announcements/).
39+
3640
## Fluent Bit, Fluentd, and CNCF
3741

3842
[Fluent Bit](http://fluentbit.io) is a [CNCF](https://cncf.io) graduated sub-project under the umbrella of [Fluentd](http://fluentd.org). Fluent Bit is licensed under the terms of the [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0).

0 commit comments

Comments
 (0)