go-ethereum/cmd
Daniel Liu 6beee27886 metrics, cmd/XDC: change init-process of metrics (#30814)
This PR modifies how the metrics library handles `Enabled`: previously,
the package `init` decided whether to serve real metrics or just
dummy-types.

This has several drawbacks:
- During pkg init, we need to determine whether metrics are enabled or
not. So we first hacked in a check if certain geth-specific
commandline-flags were enabled. Then we added a similar check for
geth-env-vars. Then we almost added a very elaborate check for
toml-config-file, plus toml parsing.

- Using "real" types and dummy types interchangeably means that
everything is hidden behind interfaces. This has a performance penalty,
and also it just adds a lot of code.

This PR removes the interface stuff, uses concrete types, and allows for
the setting of Enabled to happen later. It is still assumed that
`metrics.Enable()` is invoked early on.

The somewhat 'heavy' operations, such as ticking meters and exp-decay,
now checks the enable-flag to prevent resource leak.

The change may be large, but it's mostly pretty trivial, and from the
last time I gutted the metrics, I ensured that we have fairly good test
coverage.

---------

Co-authored-by: Felix Lange <fjl@twurst.com>
2024-12-13 14:00:14 +08:00
..
abigen cmd: migrate to urfave/cli/v2 (#24751) 2024-11-25 16:39:29 +08:00
bootnode all: replace log15 with slog (#28187) 2024-11-15 10:02:42 +08:00
ethkey cmd: migrate to urfave/cli/v2 (#24751) 2024-11-25 16:39:29 +08:00
evm cmd: migrate to urfave/cli/v2 (#24751) 2024-11-25 16:39:29 +08:00
faucet all: replace strings.Replace with string.ReplaceAll (#24835) 2024-12-08 11:51:14 +08:00
gc fix tautological condition: non-nil != nil 2024-10-31 09:01:12 +08:00
internal/browser cmd/geth: added 'geth bug' command (#3684) 2017-02-20 15:26:21 +02:00
p2psim cmd: migrate to urfave/cli/v2 (#24751) 2024-11-25 16:39:29 +08:00
puppeth crypto: add SignatureLength constant and use it everywhere (#19996) 2024-12-09 17:48:59 +08:00
rlpdump new EVM Upgrade 2021-09-21 16:53:46 +05:30
utils metrics, cmd/XDC: change init-process of metrics (#30814) 2024-12-13 14:00:14 +08:00
XDC metrics, cmd/XDC: change init-process of metrics (#30814) 2024-12-13 14:00:14 +08:00