mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 08:53:46 +00:00
internal/cli/server: fix flag behaviour (#529)
* remove setting maxpeers to 0 for nodiscover flag * set default prometheus and open-collector endpoint * skip building grpc address from pprof address and port * fix: linters * fix and improve tests * use loopback address for prometheus and open-collector endpoint * add logs for prometheus and open-collector setup * updated the script to handle prometheus-addr * updated builder/files/config.toml Co-authored-by: Pratik Patil <pratikspatil024@gmail.com>
This commit is contained in:
parent
e4f0141f68
commit
457314783f
6 changed files with 54 additions and 153 deletions
|
|
@ -96,8 +96,8 @@ syncmode = "full"
|
||||||
[telemetry]
|
[telemetry]
|
||||||
metrics = true
|
metrics = true
|
||||||
# expensive = false
|
# expensive = false
|
||||||
prometheus-addr = "127.0.0.1:7071"
|
# prometheus-addr = "127.0.0.1:7071"
|
||||||
# opencollector-endpoint = ""
|
# opencollector-endpoint = "127.0.0.1:4317"
|
||||||
# [telemetry.influx]
|
# [telemetry.influx]
|
||||||
# influxdb = false
|
# influxdb = false
|
||||||
# endpoint = ""
|
# endpoint = ""
|
||||||
|
|
|
||||||
|
|
@ -479,8 +479,8 @@ func DefaultConfig() *Config {
|
||||||
Telemetry: &TelemetryConfig{
|
Telemetry: &TelemetryConfig{
|
||||||
Enabled: false,
|
Enabled: false,
|
||||||
Expensive: false,
|
Expensive: false,
|
||||||
PrometheusAddr: "",
|
PrometheusAddr: "127.0.0.1:7071",
|
||||||
OpenCollectorEndpoint: "",
|
OpenCollectorEndpoint: "127.0.0.1:4317",
|
||||||
InfluxDB: &InfluxDBConfig{
|
InfluxDB: &InfluxDBConfig{
|
||||||
V1Enabled: false,
|
V1Enabled: false,
|
||||||
Endpoint: "",
|
Endpoint: "",
|
||||||
|
|
@ -996,8 +996,7 @@ func (c *Config) buildNode() (*node.Config, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if c.P2P.NoDiscover {
|
if c.P2P.NoDiscover {
|
||||||
// Disable networking, for now, we will not even allow incomming connections
|
// Disable peer discovery
|
||||||
cfg.P2P.MaxPeers = 0
|
|
||||||
cfg.P2P.NoDiscovery = true
|
cfg.P2P.NoDiscovery = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,6 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/eth/ethconfig"
|
|
||||||
"github.com/ethereum/go-ethereum/params"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestConfigLegacy(t *testing.T) {
|
func TestConfigLegacy(t *testing.T) {
|
||||||
|
|
@ -17,139 +14,23 @@ func TestConfigLegacy(t *testing.T) {
|
||||||
expectedConfig, err := readLegacyConfig(path)
|
expectedConfig, err := readLegacyConfig(path)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
|
|
||||||
testConfig := &Config{
|
testConfig := DefaultConfig()
|
||||||
Chain: "mainnet",
|
|
||||||
Identity: Hostname(),
|
testConfig.DataDir = "./data"
|
||||||
RequiredBlocks: map[string]string{
|
testConfig.Snapshot = false
|
||||||
"a": "b",
|
testConfig.RequiredBlocks = map[string]string{
|
||||||
},
|
"31000000": "0x2087b9e2b353209c2c21e370c82daa12278efd0fe5f0febe6c29035352cf050e",
|
||||||
LogLevel: "INFO",
|
"32000000": "0x875500011e5eecc0c554f95d07b31cf59df4ca2505f4dbbfffa7d4e4da917c68",
|
||||||
DataDir: "./data",
|
|
||||||
P2P: &P2PConfig{
|
|
||||||
MaxPeers: 30,
|
|
||||||
MaxPendPeers: 50,
|
|
||||||
Bind: "0.0.0.0",
|
|
||||||
Port: 30303,
|
|
||||||
NoDiscover: false,
|
|
||||||
NAT: "any",
|
|
||||||
Discovery: &P2PDiscovery{
|
|
||||||
V5Enabled: false,
|
|
||||||
Bootnodes: []string{},
|
|
||||||
BootnodesV4: []string{},
|
|
||||||
BootnodesV5: []string{},
|
|
||||||
StaticNodes: []string{},
|
|
||||||
TrustedNodes: []string{},
|
|
||||||
DNS: []string{},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Heimdall: &HeimdallConfig{
|
|
||||||
URL: "http://localhost:1317",
|
|
||||||
Without: false,
|
|
||||||
},
|
|
||||||
SyncMode: "full",
|
|
||||||
GcMode: "full",
|
|
||||||
Snapshot: true,
|
|
||||||
TxPool: &TxPoolConfig{
|
|
||||||
Locals: []string{},
|
|
||||||
NoLocals: false,
|
|
||||||
Journal: "transactions.rlp",
|
|
||||||
Rejournal: 1 * time.Hour,
|
|
||||||
PriceLimit: 1,
|
|
||||||
PriceBump: 10,
|
|
||||||
AccountSlots: 16,
|
|
||||||
GlobalSlots: 32768,
|
|
||||||
AccountQueue: 16,
|
|
||||||
GlobalQueue: 32768,
|
|
||||||
LifeTime: 1 * time.Second,
|
|
||||||
},
|
|
||||||
Sealer: &SealerConfig{
|
|
||||||
Enabled: false,
|
|
||||||
Etherbase: "",
|
|
||||||
GasCeil: 30000000,
|
|
||||||
GasPrice: big.NewInt(1 * params.GWei),
|
|
||||||
ExtraData: "",
|
|
||||||
},
|
|
||||||
Gpo: &GpoConfig{
|
|
||||||
Blocks: 20,
|
|
||||||
Percentile: 60,
|
|
||||||
MaxPrice: big.NewInt(5000 * params.GWei),
|
|
||||||
IgnorePrice: big.NewInt(4),
|
|
||||||
},
|
|
||||||
JsonRPC: &JsonRPCConfig{
|
|
||||||
IPCDisable: false,
|
|
||||||
IPCPath: "",
|
|
||||||
GasCap: ethconfig.Defaults.RPCGasCap,
|
|
||||||
TxFeeCap: ethconfig.Defaults.RPCTxFeeCap,
|
|
||||||
Http: &APIConfig{
|
|
||||||
Enabled: false,
|
|
||||||
Port: 8545,
|
|
||||||
Prefix: "",
|
|
||||||
Host: "localhost",
|
|
||||||
API: []string{"eth", "net", "web3", "txpool", "bor"},
|
|
||||||
Cors: []string{"localhost"},
|
|
||||||
VHost: []string{"localhost"},
|
|
||||||
},
|
|
||||||
Ws: &APIConfig{
|
|
||||||
Enabled: false,
|
|
||||||
Port: 8546,
|
|
||||||
Prefix: "",
|
|
||||||
Host: "localhost",
|
|
||||||
API: []string{"net", "web3"},
|
|
||||||
Cors: []string{"localhost"},
|
|
||||||
VHost: []string{"localhost"},
|
|
||||||
},
|
|
||||||
Graphql: &APIConfig{
|
|
||||||
Enabled: false,
|
|
||||||
Cors: []string{"localhost"},
|
|
||||||
VHost: []string{"localhost"},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Ethstats: "",
|
|
||||||
Telemetry: &TelemetryConfig{
|
|
||||||
Enabled: false,
|
|
||||||
Expensive: false,
|
|
||||||
PrometheusAddr: "",
|
|
||||||
OpenCollectorEndpoint: "",
|
|
||||||
InfluxDB: &InfluxDBConfig{
|
|
||||||
V1Enabled: false,
|
|
||||||
Endpoint: "",
|
|
||||||
Database: "",
|
|
||||||
Username: "",
|
|
||||||
Password: "",
|
|
||||||
Tags: map[string]string{},
|
|
||||||
V2Enabled: false,
|
|
||||||
Token: "",
|
|
||||||
Bucket: "",
|
|
||||||
Organization: "",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Cache: &CacheConfig{
|
|
||||||
Cache: 1024,
|
|
||||||
PercDatabase: 50,
|
|
||||||
PercTrie: 15,
|
|
||||||
PercGc: 25,
|
|
||||||
PercSnapshot: 10,
|
|
||||||
Journal: "triecache",
|
|
||||||
Rejournal: 1 * time.Second,
|
|
||||||
NoPrefetch: false,
|
|
||||||
Preimages: false,
|
|
||||||
TxLookupLimit: 2350000,
|
|
||||||
},
|
|
||||||
Accounts: &AccountsConfig{
|
|
||||||
Unlock: []string{},
|
|
||||||
PasswordFile: "",
|
|
||||||
AllowInsecureUnlock: false,
|
|
||||||
UseLightweightKDF: false,
|
|
||||||
DisableBorWallet: true,
|
|
||||||
},
|
|
||||||
GRPC: &GRPCConfig{
|
|
||||||
Addr: ":3131",
|
|
||||||
},
|
|
||||||
Developer: &DeveloperConfig{
|
|
||||||
Enabled: false,
|
|
||||||
Period: 0,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
testConfig.P2P.MaxPeers = 30
|
||||||
|
testConfig.TxPool.Locals = []string{}
|
||||||
|
testConfig.TxPool.LifeTime = time.Second
|
||||||
|
testConfig.Sealer.Enabled = true
|
||||||
|
testConfig.Sealer.GasCeil = 30000000
|
||||||
|
testConfig.Sealer.GasPrice = big.NewInt(1000000000)
|
||||||
|
testConfig.Gpo.IgnorePrice = big.NewInt(4)
|
||||||
|
testConfig.Cache.Cache = 1024
|
||||||
|
testConfig.Cache.Rejournal = time.Second
|
||||||
|
|
||||||
assert.Equal(t, expectedConfig, testConfig)
|
assert.Equal(t, expectedConfig, testConfig)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -305,6 +305,8 @@ func (s *Server) setupMetrics(config *TelemetryConfig, serviceName string) error
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
log.Info("Enabling metrics export to prometheus", "path", fmt.Sprintf("http://%s/debug/metrics/prometheus", config.PrometheusAddr))
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if config.OpenCollectorEndpoint != "" {
|
if config.OpenCollectorEndpoint != "" {
|
||||||
|
|
@ -346,6 +348,8 @@ func (s *Server) setupMetrics(config *TelemetryConfig, serviceName string) error
|
||||||
|
|
||||||
// set the tracer
|
// set the tracer
|
||||||
s.tracer = tracerProvider
|
s.tracer = tracerProvider
|
||||||
|
|
||||||
|
log.Info("Open collector tracing started", "address", config.OpenCollectorEndpoint)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
6
internal/cli/server/testdata/test.toml
vendored
6
internal/cli/server/testdata/test.toml
vendored
|
|
@ -1,7 +1,9 @@
|
||||||
datadir = "./data"
|
datadir = "./data"
|
||||||
|
snapshot = false
|
||||||
|
|
||||||
["eth.requiredblocks"]
|
["eth.requiredblocks"]
|
||||||
a = "b"
|
"31000000" = "0x2087b9e2b353209c2c21e370c82daa12278efd0fe5f0febe6c29035352cf050e"
|
||||||
|
"32000000" = "0x875500011e5eecc0c554f95d07b31cf59df4ca2505f4dbbfffa7d4e4da917c68"
|
||||||
|
|
||||||
[p2p]
|
[p2p]
|
||||||
maxpeers = 30
|
maxpeers = 30
|
||||||
|
|
@ -11,7 +13,7 @@ locals = []
|
||||||
lifetime = "1s"
|
lifetime = "1s"
|
||||||
|
|
||||||
[miner]
|
[miner]
|
||||||
mine = false
|
mine = true
|
||||||
gaslimit = 30000000
|
gaslimit = 30000000
|
||||||
gasprice = "1000000000"
|
gasprice = "1000000000"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -445,27 +445,42 @@ func updateArgsAdd(args []string) []string {
|
||||||
return args
|
return args
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleGRPC(args []string, updatedArgs []string) []string {
|
func handlePrometheus(args []string, updatedArgs []string) []string {
|
||||||
var newUpdatedArgs []string
|
var newUpdatedArgs []string
|
||||||
|
|
||||||
var addr string
|
mAddr := ""
|
||||||
|
mPort := ""
|
||||||
|
|
||||||
var port string
|
pAddr := ""
|
||||||
|
pPort := ""
|
||||||
|
|
||||||
newUpdatedArgs = append(newUpdatedArgs, updatedArgs...)
|
newUpdatedArgs = append(newUpdatedArgs, updatedArgs...)
|
||||||
|
|
||||||
for i, val := range args {
|
for i, val := range args {
|
||||||
if strings.Contains(val, "pprof.addr") && strings.Contains(val, "-") {
|
if strings.Contains(val, "metrics.addr") && strings.HasPrefix(val, "-") {
|
||||||
addr = args[i+1]
|
mAddr = args[i+1]
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.Contains(val, "pprof.port") && strings.Contains(val, "-") {
|
if strings.Contains(val, "metrics.port") && strings.HasPrefix(val, "-") {
|
||||||
port = args[i+1]
|
mPort = args[i+1]
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.Contains(val, "pprof.addr") && strings.HasPrefix(val, "-") {
|
||||||
|
pAddr = args[i+1]
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.Contains(val, "pprof.port") && strings.HasPrefix(val, "-") {
|
||||||
|
pPort = args[i+1]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
newUpdatedArgs = append(newUpdatedArgs, "--grpc.addr")
|
if mAddr != "" && mPort != "" {
|
||||||
newUpdatedArgs = append(newUpdatedArgs, addr+":"+port)
|
newUpdatedArgs = append(newUpdatedArgs, "--metrics.prometheus-addr")
|
||||||
|
newUpdatedArgs = append(newUpdatedArgs, mAddr+":"+mPort)
|
||||||
|
} else if pAddr != "" && pPort != "" {
|
||||||
|
newUpdatedArgs = append(newUpdatedArgs, "--metrics.prometheus-addr")
|
||||||
|
newUpdatedArgs = append(newUpdatedArgs, pAddr+":"+pPort)
|
||||||
|
}
|
||||||
|
|
||||||
return newUpdatedArgs
|
return newUpdatedArgs
|
||||||
}
|
}
|
||||||
|
|
@ -658,7 +673,7 @@ func main() {
|
||||||
outOfDateFlags := checkFlag(allFlags, flagsToCheck)
|
outOfDateFlags := checkFlag(allFlags, flagsToCheck)
|
||||||
updatedArgs := updateArgsClean(args, outOfDateFlags)
|
updatedArgs := updateArgsClean(args, outOfDateFlags)
|
||||||
updatedArgs = updateArgsAdd(updatedArgs)
|
updatedArgs = updateArgsAdd(updatedArgs)
|
||||||
updatedArgs = handleGRPC(args, updatedArgs)
|
updatedArgs = handlePrometheus(args, updatedArgs)
|
||||||
|
|
||||||
if temp == notYet {
|
if temp == notYet {
|
||||||
updatedArgs = append(updatedArgs, ignoreForNow...)
|
updatedArgs = append(updatedArgs, ignoreForNow...)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue