Skip to content

Commit 9ef4f75

Browse files
committed
Added the reviewed changes.
Signed-off-by: Azeem Sajid <azeem.sajid@gmail.com>
1 parent 9328e25 commit 9ef4f75

File tree

8 files changed

+20
-16
lines changed

8 files changed

+20
-16
lines changed

developer/plugin-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ It is recommended to use the new v1 plugin API for writing new plugins.
6060

6161
### Send a patch or fork?
6262

63-
If you have a problem with any built-in plugins or a new feature idea, sending a
63+
If you have a problem with any existing plugins or a new feature idea, sending a
6464
patch is better. If the plugin author is non-active, try to become its new
6565
plugin maintainer first. Forking a plugin and release its alternative version,
6666
e.g. `fluent-plugin-xxx-alt` is considered the last option.

plugins/formatter/csv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The `csv` formatter plugin output an event as CSV.
1313
- [Format section configurations](/configuration/format-section.md)
1414

1515

16-
### `fields` (required)
16+
### `fields`
1717

1818
| type | default | version |
1919
|:----------------|:---------|:--------|
2020
| array of string | `nil` | 0.14.0 |
2121

22-
Specifies the output fields.
22+
Specifies the output fields. It is a required parameter.
2323

2424

2525
### delimiter (String, Optional. defaults to ",")

plugins/output/forward.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ The client certificate path for TLS.
395395
|:------:|:-------:|:-------:|
396396
| string | nil | 1.3.2 |
397397

398-
The client 5private key path for TLS.
398+
The client private key path for TLS.
399399

400400

401401
### `tls_client_private_key_passphrase`

plugins/output/relabel.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ than supporting the `@label` parameter.
5151
The value must be `relabel`.
5252

5353

54-
### `@label` (required)
55-
56-
The label.
54+
### `@label`
5755

5856
| type | default | version |
5957
|:-------|:--------|:--------|
6058
| string | `nil` | 0.14.0 |
6159

60+
Specifies the label. It is a required parameter.
61+
6262

6363
------------------------------------------------------------------------
6464

plugins/parser/multiline.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@ unmatched new lines in the temporary buffer and try to match the buffered logs
2828
with each new line.
2929

3030

31-
### `formatN` (required)
31+
### `formatN`
3232

3333
| type | default | version |
3434
|:-------|:--------|:--------|
3535
| string | `nil` | 0.14.0 |
3636

37+
It is a required parameter.
38+
3739
Specifies the regexp patterns. For readability, you can separate the regexp
38-
patterns into multiple `regexpN` parameters. See the Rails Log's example below.
40+
patterns into multiple `formatN` parameters. See the Rails Log's example below.
3941
These patterns are joined and then construct a regexp pattern with multiline
4042
mode.
4143

plugins/service_discovery/file.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,22 @@ Each target has following parameters:
7777
- `weight`
7878

7979

80-
#### `host` (required)
80+
#### `host`
8181

8282
| type | default | version |
8383
|:-------|:--------|:--------|
8484
| string | `nil` | 1.8.0 |
8585

86-
The IP address or hostname of the server.
86+
The IP address or hostname of the server. It is a required parameter.
8787

8888

89-
#### `port` (required)
89+
#### `port`
9090

9191
| type | default | version |
9292
|:--------|:--------|:--------|
9393
| integer | | 1.8.0 |
9494

95-
The port number of the host.
95+
The port number of the host. It is a required parameter.
9696

9797

9898
#### `name`

plugins/service_discovery/srv.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,16 @@ Service without the underscore in
3939
[RFC2782](https://tools.ietf.org/html/rfc2782).
4040

4141

42-
### `proto` (required)
42+
### `proto`
4343

4444
| type | default | version |
4545
|:-------|:--------|:--------|
4646
| string | `nil` | 1.10.0 |
4747

4848
Proto without the underscore in [RFC2782](https://tools.ietf.org/html/rfc2782).
4949

50+
It is a required parameter.
51+
5052

5153
### `hostname`
5254

plugins/service_discovery/static.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ to the `server` directive:
2929
The value must be `static`.
3030

3131

32-
#### `host` (required)
32+
#### `host`
3333

3434
| type | default | version |
3535
|:-------|:---------|:--------|
3636
| string | | 1.8.0 |
3737

38-
The IP address or hostname of the server.
38+
The IP address or hostname of the server. It is a required parameter.
3939

4040

4141
#### `port`

0 commit comments

Comments
 (0)