docs(inputs.win_services): Specify case-insensitive naming (#15077)

This commit is contained in:
Joshua Powers 2024-03-29 12:12:45 -06:00 committed by GitHub
parent 164f6790a7
commit 91dca4f2bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 4 deletions

View File

@ -20,13 +20,16 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
# Input plugin to report Windows services info.
# This plugin ONLY supports Windows
[[inputs.win_services]]
## Names of the services to monitor. Leave empty to monitor all the available services on the host. Globs accepted. Case sensitive.
## Names of the services to monitor. Leave empty to monitor all the available
## services on the host. Globs accepted. Case insensitive.
service_names = [
"LanmanServer",
"TermService",
"Win*",
]
excluded_service_names = ['WinRM'] # optional, list of service names to exclude
# optional, list of service names to exclude
excluded_service_names = ['WinRM']
```
## Metrics

View File

@ -1,10 +1,13 @@
# Input plugin to report Windows services info.
# This plugin ONLY supports Windows
[[inputs.win_services]]
## Names of the services to monitor. Leave empty to monitor all the available services on the host. Globs accepted. Case sensitive.
## Names of the services to monitor. Leave empty to monitor all the available
## services on the host. Globs accepted. Case insensitive.
service_names = [
"LanmanServer",
"TermService",
"Win*",
]
excluded_service_names = ['WinRM'] # optional, list of service names to exclude
# optional, list of service names to exclude
excluded_service_names = ['WinRM']