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 # # Reads metrics from RavenDB servers via the Monitoring Endpoints
# [[inputs.ravendb]] # [[inputs.ravendb]]
# ## Node URL and port that RavenDB is listening on # ## Node URL and port that RavenDB is listening on. By default,
# url = "https://localhost:8080" # ## 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 # ## RavenDB X509 client certificate setup
# # tls_cert = "/etc/telegraf/raven.crt" # # tls_cert = "/etc/telegraf/raven.crt"

View File

@ -6278,8 +6278,11 @@
# # Reads metrics from RavenDB servers via the Monitoring Endpoints # # Reads metrics from RavenDB servers via the Monitoring Endpoints
# [[inputs.ravendb]] # [[inputs.ravendb]]
# ## Node URL and port that RavenDB is listening on # ## Node URL and port that RavenDB is listening on. By default,
# url = "https://localhost:8080" # ## 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 # ## RavenDB X509 client certificate setup
# # tls_cert = "/etc/telegraf/raven.crt" # # 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 ```toml
[[inputs.ravendb]] [[inputs.ravendb]]
## Node URL and port that RavenDB is listening on ## Node URL and port that RavenDB is listening on. By default,
url = "https://localhost:8080" ## 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 ## RavenDB X509 client certificate setup
tls_cert = "/etc/telegraf/raven.crt" tls_cert = "/etc/telegraf/raven.crt"

View File

@ -47,8 +47,11 @@ type RavenDB struct {
} }
var sampleConfig = ` var sampleConfig = `
## Node URL and port that RavenDB is listening on ## Node URL and port that RavenDB is listening on. By default,
url = "https://localhost:8080" ## 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 ## RavenDB X509 client certificate setup
# tls_cert = "/etc/telegraf/raven.crt" # tls_cert = "/etc/telegraf/raven.crt"