Skip to content

Commit 2a32b55

Browse files
Local testing, Stream processing, FB for devs: update titles to sentence case
Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent 13504e7 commit 2a32b55

File tree

3 files changed

+26
-27
lines changed

3 files changed

+26
-27
lines changed

SUMMARY.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@
8383
* [Performance Tips](administration/performance.md)
8484
* [AWS credentials](administration/aws-credentials.md)
8585

86-
## Local Testing
86+
## Local testing
8787

88-
* [Validating your Data and Structure](local-testing/validating-your-data-and-structure.md)
89-
* [Running a Logging Pipeline Locally](local-testing/logging-pipeline.md)
88+
* [Validate your data and structure](local-testing/validating-your-data-and-structure.md)
89+
* [Run a logging pipeline locally](local-testing/logging-pipeline.md)
9090

91-
## Data Pipeline <a href="#pipeline" id="pipeline"></a>
91+
## Data pipeline
9292

9393
* [Pipeline Monitoring](pipeline/pipeline-monitoring.md)
9494
* [Inputs](pipeline/inputs/README.md)
@@ -223,21 +223,21 @@
223223
* [Vivo Exporter](pipeline/outputs/vivo-exporter.md)
224224
* [WebSocket](pipeline/outputs/websocket.md)
225225

226-
## Stream Processing
226+
## Stream processing
227227

228-
* [Introduction to Stream Processing](stream-processing/introduction.md)
228+
* [Introduction to stream processing](stream-processing/introduction.md)
229229
* [Overview](stream-processing/overview.md)
230230
* [Changelog](stream-processing/changelog.md)
231-
* [Getting Started](stream-processing/getting-started/README.md)
232-
* [Fluent Bit + SQL](stream-processing/getting-started/fluent-bit-sql.md)
233-
* [Check Keys and NULL values](stream-processing/getting-started/check-keys-null-values.md)
234-
* [Hands On 101](stream-processing/getting-started/hands-on.md)
235-
236-
## Fluent Bit for Developers <a href="#development" id="development"></a>
237-
238-
* [C Library API](development/library_api.md)
239-
* [Ingest Records Manually](development/ingest-records-manually.md)
240-
* [Golang Output Plugins](development/golang-output-plugins.md)
241-
* [WASM Filter Plugins](development/wasm-filter-plugins.md)
242-
* [WASM Input Plugins](development/wasm-input-plugins.md)
243-
* [Developer guide for beginners on contributing to Fluent Bit](development/developer-guide.md)
231+
* [Get started](stream-processing/getting-started/README.md)
232+
* [Fluent Bit and SQL](stream-processing/getting-started/fluent-bit-sql.md)
233+
* [Check keys and null values](stream-processing/getting-started/check-keys-null-values.md)
234+
* [Tutorial](stream-processing/getting-started/hands-on.md)
235+
236+
## Fluent Bit for developers
237+
238+
* [C library API](development/library_api.md)
239+
* [Ingest records manually](development/ingest-records-manually.md)
240+
* [Golang output plugins](development/golang-output-plugins.md)
241+
* [Wasm filter plugins](development/wasm-filter-plugins.md)
242+
* [Wasm input plugins](development/wasm-input-plugins.md)
243+
* [Contribution guide for beginners](development/developer-guide.md)

development/developer-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Developer guide for beginners on contributing to Fluent Bit
1+
# Contribution guide for beginners
22

33
If you have some knowledge of C, this guide should help you understand how to make code changes to Fluent Bit.
44

local-testing/validating-your-data-and-structure.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ Consider a JSON file `data.log` with the following content:
7272
{"color": "green", "label": {"name": "abc"}, "meta": null}
7373
```
7474

75-
The following files configure a pipeline to consume the log, while applying an Expect filter to validate that the
76-
keys `color` and `label` exist.
75+
The following files configure a pipeline to consume the log, while applying an Expect filter to validate that the keys `color` and `label` exist.
7776

7877
{% tabs %}
7978
{% tab title="fluent-bit.yaml" %}
@@ -97,7 +96,7 @@ pipeline:
9796
filters:
9897
- name: expect
9998
match: '*'
100-
key_exists:
99+
key_exists:
101100
- color
102101
- $label['name']
103102
action: exit
@@ -191,16 +190,16 @@ pipeline:
191190
filters:
192191
- name: expect
193192
match: '*'
194-
key_exists:
193+
key_exists:
195194
- color
196195
- $label['name']
197196
action: exit
198-
197+
199198
# Match records that only contains map 'label' with key 'name' = 'abc'
200199
- name: grep
201200
match: '*'
202201
regex: "$label['name'] ^abc$"
203-
202+
204203
# Check that every record contains 'label' with a non-null value
205204
- name: expect
206205
match: '*'
@@ -283,4 +282,4 @@ pipeline:
283282

284283
## Production deployment
285284

286-
When deploying in production, consider removing any `Expect` filters from your configuration file. These filters are unnecessary unless you need 100% coverage of checks at runtime.
285+
When deploying in production, consider removing any `Expect` filters from your configuration file. These filters are unnecessary unless you need 100% coverage of checks at runtime.

0 commit comments

Comments
 (0)