Skip to content

Commit fb9b675

Browse files
authored
Merge branch 'master' into lynettemiles/sc-135377/set-amspelling-vale-test-to-error-for-fluent
Signed-off-by: Lynette Miles <[email protected]>
2 parents e31db7f + 0344c13 commit fb9b675

File tree

7 files changed

+22
-15
lines changed

7 files changed

+22
-15
lines changed

CONTRIBUTING.md

+7
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ at the `suggestion` level and won't block merging.
129129
The following tests are at a `error` level and will prevent merging:
130130

131131
- [AmSpelling](https://developers.google.com/style/word-list)
132+
- [Emdash](https://github.com/errata-ai/Google/blob/master/Google/EmDash.yml)
133+
- [Endash](https://github.com/errata-ai/Google/blob/master/Google/EmDash.yml)
134+
- [Exclamation](https://github.com/errata-ai/Google/blob/master/Google/Exclamation.yml)
132135
- [NonStandardQuotes](https://github.com/fluent/fluent-bit-docs/blob/master/vale-styles/FluentBit/NonStandardQuotes.yml):
133136
[Use standard quotes](https://developers.google.com/style/quotation-marks#straight-and-curly-quotation-marks).
134137
By default, Google Docs and Microsoft Word turn standard straight quotes into "smart"
@@ -139,3 +142,7 @@ The following tests are at a `error` level and will prevent merging:
139142
to prevent this problem.
140143
- [Repetition](https://github.com/errata-ai/vale/blob/v3/testdata/styles/Markup/Repetition.yml):
141144
Checks for the same word used twice in succession.
145+
146+
The following tests are at a `warning` level and won't prevent merging:
147+
148+
- [Ampersand](https://developers.google.com/style/word-list#ampersand)

SUMMARY.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
* [What is Fluent Bit?](about/what-is-fluent-bit.md)
88
* [A Brief History of Fluent Bit](about/history.md)
9-
* [Fluentd & Fluent Bit](about/fluentd-and-fluent-bit.md)
9+
* [Fluentd and Fluent Bit](about/fluentd-and-fluent-bit.md)
1010
* [License](about/license.md)
1111
* [Sandbox and Lab Resources](about/sandbox-and-lab-resources.md)
1212

@@ -69,7 +69,7 @@
6969
* [Unit Sizes](administration/configuring-fluent-bit/unit-sizes.md)
7070
* [Multiline Parsing](administration/configuring-fluent-bit/multiline-parsing.md)
7171
* [Transport Security](administration/transport-security.md)
72-
* [Buffering & Storage](administration/buffering-and-storage.md)
72+
* [Buffering and Storage](administration/buffering-and-storage.md)
7373
* [Backpressure](administration/backpressure.md)
7474
* [Scheduling and Retries](administration/scheduling-and-retries.md)
7575
* [Networking](administration/networking.md)
@@ -217,7 +217,7 @@
217217
* [Stackdriver](pipeline/outputs/stackdriver.md)
218218
* [Standard Output](pipeline/outputs/standard-output.md)
219219
* [Syslog](pipeline/outputs/syslog.md)
220-
* [TCP & TLS](pipeline/outputs/tcp-and-tls.md)
220+
* [TCP and TLS](pipeline/outputs/tcp-and-tls.md)
221221
* [Treasure Data](pipeline/outputs/treasure-data.md)
222222
* [Vivo Exporter](pipeline/outputs/vivo-exporter.md)
223223
* [WebSocket](pipeline/outputs/websocket.md)
@@ -230,7 +230,7 @@
230230
* [Getting Started](stream-processing/getting-started/README.md)
231231
* [Fluent Bit + SQL](stream-processing/getting-started/fluent-bit-sql.md)
232232
* [Check Keys and NULL values](stream-processing/getting-started/check-keys-null-values.md)
233-
* [Hands On! 101](stream-processing/getting-started/hands-on.md)
233+
* [Hands On 101](stream-processing/getting-started/hands-on.md)
234234

235235
## Fluent Bit for Developers <a href="#development" id="development"></a>
236236

administration/buffering-and-storage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Buffering & Storage
1+
# Buffering and Storage
22

33
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=cde12327-09ed-409c-ac02-7c0afa5eff51" />
44

pipeline/filters/kubernetes.md

-2
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,6 @@ spec:
405405

406406
The key point is to set `hostNetwork` to `true` and `dnsPolicy` to `ClusterFirstWithHostNet` that fluent bit DaemonSet could call Kubelet locally. Otherwise it could not resolve the dns for kubelet.
407407

408-
Now you are good to use this new feature!
409-
410408
### Verify that the Use\_Kubelet option is working
411409

412410
Basically you should see no difference about your experience for enriching your log files with Kubernetes metadata.

pipeline/inputs/cpu-metrics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ As described above, the CPU input plugin gathers the overall usage every one sec
5757

5858
### Configuration File
5959

60-
In your main configuration file append the following _Input_ & _Output_ sections:
60+
In your main configuration file append the following _Input_ and _Output_ sections:
6161

6262
{% tabs %}
6363
{% tab title="fluent-bit.conf" %}

vale-styles/FluentBit/Ampersand.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
---
21
extends: existence
3-
message: "Don't use an ampersand in place of the word 'and'. Always write out 'and' unless the ampersand is part of a proper name."
2+
message: 'Use "and" instead of "&" in content.'
3+
level: warning
4+
scope: text
45
nonword: true
5-
ignorecase: false
6-
level: suggestion
7-
scope: sentence
86
tokens:
9-
- '[^\*{2}].*.&.*[^\*{2}]\n'
7+
- '\s&\s'
8+
- '^&\s'
9+
- '\s&$'
10+
- '\s&[^\w]'
11+
- '[^\w]&\s'

vale-styles/FluentBit/Exclamation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ extends: existence
22
message: "Don't use exclamation points in text."
33
link: 'https://developers.google.com/style/exclamation-points'
44
nonword: true
5-
level: suggestion
5+
level: error
66
tokens:
77
- '\w!(?:\s|$)'

0 commit comments

Comments
 (0)