Skip to content

Commit 92fb0e1

Browse files
authored
in_collectd: sort parameters alphabetically and fix style (#2293)
- Reorder configuration parameters table alphabetically - Fix Vale suggestions: use 'lets you' instead of 'allows you to' - Remove unnecessary 'will' for more direct language Fixes #2196. Signed-off-by: Eric D. Schabell <[email protected]>
1 parent baafd3c commit 92fb0e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pipeline/inputs/collectd.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ The plugin supports the following configuration parameters:
1010
|:-----------|:--------------------------------------------------------------------------------------------------------|:-------------------------------|
1111
| `listen` | Set the address to listen to. | `0.0.0.0` |
1212
| `port` | Set the port to listen to. | `25826` |
13-
| `typesdb` | Set the data specification file. You can specify multiple files separated by commas. Later entries take precedence over earlier ones. | `/usr/share/collectd/types.db` |
1413
| `threaded` | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). | `false` |
14+
| `typesdb` | Set the data specification file. You can specify multiple files separated by commas. Later entries take precedence over earlier ones. | `/usr/share/collectd/types.db` |
1515

1616
## Get started
1717

@@ -77,12 +77,12 @@ With this configuration, Fluent Bit listens to `0.0.0.0:25826`, and outputs inco
7777

7878
You must set the same `types.db` files that your `collectd` server uses. Otherwise, Fluent Bit might not be able to interpret the payload properly.
7979

80-
The `typesdb` parameter supports multiple files separated by commas. When multiple files are specified, later entries take precedence over earlier ones if there are duplicate type definitions. This allows you to override default types with custom definitions.
80+
The `typesdb` parameter supports multiple files separated by commas. When multiple files are specified, later entries take precedence over earlier ones if there are duplicate type definitions. This lets you override default types with custom definitions.
8181

8282
For example:
8383

8484
```yaml
8585
typesdb: '/usr/share/collectd/types.db,/etc/collectd/custom.db'
8686
```
8787
88-
In this configuration, custom type definitions in `/etc/collectd/custom.db` will override any matching definitions from `/usr/share/collectd/types.db`.
88+
In this configuration, custom type definitions in `/etc/collectd/custom.db` override any matching definitions from `/usr/share/collectd/types.db`.

0 commit comments

Comments
 (0)