docs: update uri scheme for default RavenDB configuration (#10764)

This commit is contained in:
Marcin Lewandowski 2022-03-04 14:38:31 +01:00 committed by GitHub
parent 15efa3abf4
commit 7e2f22c00c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 8 deletions

View File

@ -6411,8 +6411,11 @@
# # Reads metrics from RavenDB servers via the Monitoring Endpoints
# [[inputs.ravendb]]
# ## Node URL and port that RavenDB is listening on
# url = "https://localhost:8080"
# ## Node URL and port that RavenDB is listening on. By default,
# ## attempts to connect securely over HTTPS, however, if the user
# ## is running a local unsecure development cluster users can use
# ## HTTP via a URL like "http://localhost:8080"
# url = "https://localhost:4433"
#
# ## RavenDB X509 client certificate setup
# # tls_cert = "/etc/telegraf/raven.crt"

View File

@ -6278,8 +6278,11 @@
# # Reads metrics from RavenDB servers via the Monitoring Endpoints
# [[inputs.ravendb]]
# ## Node URL and port that RavenDB is listening on
# url = "https://localhost:8080"
# ## Node URL and port that RavenDB is listening on. By default,
# ## attempts to connect securely over HTTPS, however, if the user
# ## is running a local unsecure development cluster users can use
# ## HTTP via a URL like "http://localhost:8080"
# url = "https://localhost:4433"
#
# ## RavenDB X509 client certificate setup
# # tls_cert = "/etc/telegraf/raven.crt"

View File

@ -10,8 +10,11 @@ The following is an example config for RavenDB. **Note:** The client certificate
```toml
[[inputs.ravendb]]
## Node URL and port that RavenDB is listening on
url = "https://localhost:8080"
## Node URL and port that RavenDB is listening on. By default,
## attempts to connect securely over HTTPS, however, if the user
## is running a local unsecure development cluster users can use
## HTTP via a URL like "http://localhost:8080"
url = "https://localhost:4433"
## RavenDB X509 client certificate setup
tls_cert = "/etc/telegraf/raven.crt"

View File

@ -47,8 +47,11 @@ type RavenDB struct {
}
var sampleConfig = `
## Node URL and port that RavenDB is listening on
url = "https://localhost:8080"
## Node URL and port that RavenDB is listening on. By default,
## attempts to connect securely over HTTPS, however, if the user
## is running a local unsecure development cluster users can use
## HTTP via a URL like "http://localhost:8080"
url = "https://localhost:4433"
## RavenDB X509 client certificate setup
# tls_cert = "/etc/telegraf/raven.crt"