Skip to content

Commit 266e5af

Browse files
authored
Merge branch 'master' into lynettemiles/sc-142987/vale-add-test-for-endpoint
Signed-off-by: Lynette Miles <[email protected]>
2 parents 2b09b21 + 4d8b587 commit 266e5af

File tree

203 files changed

+4684
-5350
lines changed

Some content is hidden

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

203 files changed

+4684
-5350
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

.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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

CONTRIBUTING.md

Lines changed: 112 additions & 126 deletions
Large diffs are not rendered by default.

MAINTAINERS.md

Lines changed: 1 addition & 2 deletions
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
| :---------------------------------------------------- | ------------------------ | ------------------------------------------------- |
@@ -11,4 +11,3 @@ Fluent Bit is developed and supported by many individuals and companies. The fo
1111
| [Alexa Kreizinger](https://github.com/alexakreizinger) | All | [Chronosphere](https://chronosphere.io) |
1212
| [Paige Cruz](https://github.com/paigerduty) | All | [Chronosphere](https://chronosphere.io/) |
1313
| [Eric D. Schabell](https://github.com/eschabell) | All | [Chronosphere](https://chronosphere.io/) |
14-

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ 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

SUMMARY.md

Lines changed: 107 additions & 112 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)