docs: update uri scheme for default RavenDB configuration (#10764)
This commit is contained in:
parent
15efa3abf4
commit
7e2f22c00c
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue