mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
internal/cli/server :: chg : default OpenCollectorEndpoint to empty string (#872)
* chg : default OpenCollectorEndpoint to empty string * chg : opencollector-endpoint defaults in configs
This commit is contained in:
parent
0f3d965067
commit
5c91264143
4 changed files with 4 additions and 4 deletions
|
|
@ -129,7 +129,7 @@ syncmode = "full"
|
||||||
metrics = true
|
metrics = true
|
||||||
# expensive = false
|
# expensive = false
|
||||||
# prometheus-addr = "127.0.0.1:7071"
|
# prometheus-addr = "127.0.0.1:7071"
|
||||||
# opencollector-endpoint = "127.0.0.1:4317"
|
# opencollector-endpoint = ""
|
||||||
# [telemetry.influx]
|
# [telemetry.influx]
|
||||||
# influxdb = false
|
# influxdb = false
|
||||||
# endpoint = ""
|
# endpoint = ""
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ devfakeauthor = false # Run miner without validator set authorization
|
||||||
metrics = false # Enable metrics collection and reporting
|
metrics = false # Enable metrics collection and reporting
|
||||||
expensive = false # Enable expensive metrics collection and reporting
|
expensive = false # Enable expensive metrics collection and reporting
|
||||||
prometheus-addr = "127.0.0.1:7071" # Address for Prometheus Server
|
prometheus-addr = "127.0.0.1:7071" # Address for Prometheus Server
|
||||||
opencollector-endpoint = "127.0.0.1:4317" # OpenCollector Endpoint (host:port)
|
opencollector-endpoint = "" # OpenCollector Endpoint (host:port)
|
||||||
[telemetry.influx]
|
[telemetry.influx]
|
||||||
influxdb = false # Enable metrics export/push to an external InfluxDB database (v1)
|
influxdb = false # Enable metrics export/push to an external InfluxDB database (v1)
|
||||||
endpoint = "" # InfluxDB API endpoint to report metrics to
|
endpoint = "" # InfluxDB API endpoint to report metrics to
|
||||||
|
|
|
||||||
|
|
@ -258,7 +258,7 @@ The ```bor server``` command runs the Bor client.
|
||||||
|
|
||||||
- ```metrics.prometheus-addr```: Address for Prometheus Server (default: 127.0.0.1:7071)
|
- ```metrics.prometheus-addr```: Address for Prometheus Server (default: 127.0.0.1:7071)
|
||||||
|
|
||||||
- ```metrics.opencollector-endpoint```: OpenCollector Endpoint (host:port) (default: 127.0.0.1:4317)
|
- ```metrics.opencollector-endpoint```: OpenCollector Endpoint (host:port)
|
||||||
|
|
||||||
- ```metrics.influxdbv2```: Enable metrics export/push to an external InfluxDB v2 database (default: false)
|
- ```metrics.influxdbv2```: Enable metrics export/push to an external InfluxDB v2 database (default: false)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -703,7 +703,7 @@ func DefaultConfig() *Config {
|
||||||
Enabled: false,
|
Enabled: false,
|
||||||
Expensive: false,
|
Expensive: false,
|
||||||
PrometheusAddr: "127.0.0.1:7071",
|
PrometheusAddr: "127.0.0.1:7071",
|
||||||
OpenCollectorEndpoint: "127.0.0.1:4317",
|
OpenCollectorEndpoint: "",
|
||||||
InfluxDB: &InfluxDBConfig{
|
InfluxDB: &InfluxDBConfig{
|
||||||
V1Enabled: false,
|
V1Enabled: false,
|
||||||
Endpoint: "",
|
Endpoint: "",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue