docs: Fix typos (#14339)

This commit is contained in:
Andreas Deininger 2023-11-27 15:27:34 +01:00 committed by GitHub
parent 0e591ea8cf
commit d1b316ab1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -231,7 +231,7 @@ combining an integer value and time unit as a string value. Valid time units ar
Global tags can be specified in the `[global_tags]` table in key="value"
format. All metrics that are gathered will be tagged with the tags specified.
Global tags are overriden by tags set by plugins.
Global tags are overridden by tags set by plugins.
```toml
[global_tags]
@ -375,7 +375,7 @@ Parameters that can be used with any input plugin:
Overrides the `precision` setting of the [agent][Agent] for the plugin.
Collected metrics are rounded to the precision specified as an [interval][].
When this value is set on a service input, multiple events occuring at the
When this value is set on a service input, multiple events occurring at the
same timestamp may be merged by the output database.
- **collection_jitter**:

View File

@ -70,7 +70,7 @@ In case you still want to continue with the PR, feel free to reopen it.
## Linting
Each pull request will have the appriopriate linters checking the files for any common mistakes. The github action Super Linter is used: [super-pinter](https://github.com/github/super-linter). If it is failing you can click on the action and read the logs to figure out the issue. You can also run the github action locally by following these instructions: [run-linter-locally.md](https://github.com/github/super-linter/blob/main/docs/run-linter-locally.md). You can find more information on each of the linters in the super linter readme.
Each pull request will have the appropriate linters checking the files for any common mistakes. The github action Super Linter is used: [super-pinter](https://github.com/github/super-linter). If it is failing you can click on the action and read the logs to figure out the issue. You can also run the github action locally by following these instructions: [run-linter-locally.md](https://github.com/github/super-linter/blob/main/docs/run-linter-locally.md). You can find more information on each of the linters in the super linter readme.
## Testing

View File

@ -149,7 +149,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
register = "coil"
## Name of the measurement.
## Can be overriden by the individual field definitions. Defaults to "modbus"
## Can be overridden by the individual field definitions. Defaults to "modbus"
# measurement = "modbus"
## Request optimization algorithm.

View File

@ -22,7 +22,7 @@
register = "coil"
## Name of the measurement.
## Can be overriden by the individual field definitions. Defaults to "modbus"
## Can be overridden by the individual field definitions. Defaults to "modbus"
# measurement = "modbus"
## Request optimization algorithm.

View File

@ -25,7 +25,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
## Secret-store support
This plugin supports secrets from secret-stores for the `usernane` and
This plugin supports secrets from secret-stores for the `username` and
`password` option.
See the [secret-store documentation][SECRETSTORE] for more details on how
to use them.

View File

@ -335,7 +335,7 @@ func TestDefautTags(t *testing.T) {
parser := Parser{
DefaultTags: map[string]string{
"defaultTag": "defaultTagValue",
"dockerVersion": "to_be_overriden",
"dockerVersion": "to_be_overridden",
},
}
metrics, err := parser.Parse([]byte(validUniqueGauge))