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
|
# # 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"
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue