From 8ea0096d56dbe0971a13abb4a0794800660e4343 Mon Sep 17 00:00:00 2001
From: Mark Holt <135143369+mh0lt@users.noreply.github.com>
Date: Sun, 3 Sep 2023 02:09:27 +0100
Subject: [PATCH] moved metrics sub packages types to metrics (#8119)
This is a non functional change which consolidates the various packages
under metrics into the top level package now that the dead code is
removed.
It is a precursor to the removal of Victoria metrics after which all
erigon metrics code will be contained in this single package.
---
cl/phase1/core/state/lru/lru.go | 2 +-
cl/phase1/core/state/ssz.go | 11 +++++------
cl/transition/impl/eth2/operations.go | 6 +++---
cl/transition/machine/block.go | 5 +++--
cmd/caplin-regression/main.go | 4 ++--
cmd/erigon/main.go | 2 +-
cmd/integration/commands/state_domains.go | 2 +-
cmd/sentinel/sentinel/peers/manager.go | 4 ++--
consensus/bor/heimdall/metrics.go | 5 ++---
core/blockchain.go | 2 +-
eth/stagedsync/all_stages.go | 2 +-
metrics/{prometheus => }/collector.go | 2 +-
metrics/{exp => }/exp.go | 6 ++----
metrics/{prometheus => }/prometheus.go | 5 ++---
metrics/{methelp => }/register.go | 13 ++++++-------
metrics/{methelp => }/timer.go | 2 +-
p2p/metrics.go | 2 +-
p2p/peer.go | 2 +-
p2p/transport_test.go | 3 ++-
rpc/metrics.go | 2 +-
turbo/debug/flags.go | 6 +++---
turbo/shards/state_cache.go | 2 +-
22 files changed, 43 insertions(+), 47 deletions(-)
rename metrics/{prometheus => }/collector.go (99%)
rename metrics/{exp => }/exp.go (80%)
rename metrics/{prometheus => }/prometheus.go (95%)
rename metrics/{methelp => }/register.go (70%)
rename metrics/{methelp => }/timer.go (98%)
diff --git a/cl/phase1/core/state/lru/lru.go b/cl/phase1/core/state/lru/lru.go
index 9b156569dd4..9255f8af93c 100644
--- a/cl/phase1/core/state/lru/lru.go
+++ b/cl/phase1/core/state/lru/lru.go
@@ -4,7 +4,7 @@ import (
"fmt"
lru "github.com/hashicorp/golang-lru/v2"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
)
// Cache is a wrapper around hashicorp lru but with metric for Get
diff --git a/cl/phase1/core/state/ssz.go b/cl/phase1/core/state/ssz.go
index 12c817c570b..ce7209d6a95 100644
--- a/cl/phase1/core/state/ssz.go
+++ b/cl/phase1/core/state/ssz.go
@@ -1,29 +1,28 @@
package state
import (
- "github.com/ledgerwatch/erigon/metrics/methelp"
-
"github.com/ledgerwatch/erigon-lib/types/clonable"
+ "github.com/ledgerwatch/erigon/metrics"
)
func (b *CachingBeaconState) EncodeSSZ(buf []byte) ([]byte, error) {
- h := methelp.NewHistTimer("encode_ssz_beacon_state_dur")
+ h := metrics.NewHistTimer("encode_ssz_beacon_state_dur")
bts, err := b.BeaconState.EncodeSSZ(buf)
if err != nil {
return nil, err
}
h.PutSince()
- sz := methelp.NewHistTimer("encode_ssz_beacon_state_size")
+ sz := metrics.NewHistTimer("encode_ssz_beacon_state_size")
sz.Update(float64(len(bts)))
return bts, err
}
func (b *CachingBeaconState) DecodeSSZ(buf []byte, version int) error {
- h := methelp.NewHistTimer("decode_ssz_beacon_state_dur")
+ h := metrics.NewHistTimer("decode_ssz_beacon_state_dur")
if err := b.BeaconState.DecodeSSZ(buf, version); err != nil {
return err
}
- sz := methelp.NewHistTimer("decode_ssz_beacon_state_size")
+ sz := metrics.NewHistTimer("decode_ssz_beacon_state_size")
sz.Update(float64(len(buf)))
h.PutSince()
return b.initBeaconState()
diff --git a/cl/transition/impl/eth2/operations.go b/cl/transition/impl/eth2/operations.go
index ac43e217e6a..e22016e02b7 100644
--- a/cl/transition/impl/eth2/operations.go
+++ b/cl/transition/impl/eth2/operations.go
@@ -8,9 +8,9 @@ import (
"time"
"github.com/ledgerwatch/erigon/cl/abstract"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/erigon/cl/transition/impl/eth2/statechange"
- "github.com/ledgerwatch/erigon/metrics/methelp"
"golang.org/x/exp/slices"
"github.com/ledgerwatch/erigon-lib/common"
@@ -480,7 +480,7 @@ func (I *impl) VerifyKzgCommitmentsAgainstTransactions(transactions *solid.Trans
func (I *impl) ProcessAttestations(s abstract.BeaconState, attestations *solid.ListSSZ[*solid.Attestation]) error {
attestingIndiciesSet := make([][]uint64, attestations.Len())
- h := methelp.NewHistTimer("beacon_process_attestations")
+ h := metrics.NewHistTimer("beacon_process_attestations")
baseRewardPerIncrement := s.BaseRewardPerIncrement()
c := h.Tag("attestation_step", "process")
@@ -519,7 +519,7 @@ func processAttestationPostAltair(s abstract.BeaconState, attestation *solid.Att
stateSlot := s.Slot()
beaconConfig := s.BeaconConfig()
- h := methelp.NewHistTimer("beacon_process_attestation_post_altair")
+ h := metrics.NewHistTimer("beacon_process_attestation_post_altair")
c := h.Tag("step", "get_participation_flag")
participationFlagsIndicies, err := s.GetAttestationParticipationFlagIndicies(attestation.AttestantionData(), stateSlot-data.Slot())
diff --git a/cl/transition/machine/block.go b/cl/transition/machine/block.go
index 78a573af6aa..c98beb32388 100644
--- a/cl/transition/machine/block.go
+++ b/cl/transition/machine/block.go
@@ -3,12 +3,13 @@ package machine
import (
"errors"
"fmt"
+
"github.com/ledgerwatch/erigon/cl/abstract"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/erigon/cl/clparams"
"github.com/ledgerwatch/erigon/cl/cltypes"
"github.com/ledgerwatch/erigon/cl/cltypes/solid"
- "github.com/ledgerwatch/erigon/metrics/methelp"
)
// ProcessBlock processes a block with the block processor
@@ -19,7 +20,7 @@ func ProcessBlock(impl BlockProcessor, s abstract.BeaconState, signedBlock *clty
if signedBlock.Version() != version {
return fmt.Errorf("processBlock: wrong state version for block at slot %d", block.Slot)
}
- h := methelp.NewHistTimer("beacon_process_block")
+ h := metrics.NewHistTimer("beacon_process_block")
// Process the block header.
if err := impl.ProcessBlockHeader(s, block); err != nil {
return fmt.Errorf("processBlock: failed to process block header: %v", err)
diff --git a/cmd/caplin-regression/main.go b/cmd/caplin-regression/main.go
index 62f447f9b37..390ad2268ba 100644
--- a/cmd/caplin-regression/main.go
+++ b/cmd/caplin-regression/main.go
@@ -3,7 +3,7 @@ package main
import (
"flag"
- "github.com/ledgerwatch/erigon/metrics/exp"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/erigon/turbo/debug"
"github.com/ledgerwatch/erigon/cl/cltypes"
@@ -43,7 +43,7 @@ func main() {
)
if *pprof {
// Server for pprof
- debug.StartPProf("localhost:6060", exp.Setup("localhost:6060", log.Root()))
+ debug.StartPProf("localhost:6060", metrics.Setup("localhost:6060", log.Root()))
}
if err != nil {
diff --git a/cmd/erigon/main.go b/cmd/erigon/main.go
index 079531bb129..a77ae422bed 100644
--- a/cmd/erigon/main.go
+++ b/cmd/erigon/main.go
@@ -9,7 +9,7 @@ import (
"strings"
"github.com/ledgerwatch/erigon-lib/common/dbg"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/log/v3"
"github.com/pelletier/go-toml"
"github.com/urfave/cli/v2"
diff --git a/cmd/integration/commands/state_domains.go b/cmd/integration/commands/state_domains.go
index 0b0e8bc72e8..3f9d1041236 100644
--- a/cmd/integration/commands/state_domains.go
+++ b/cmd/integration/commands/state_domains.go
@@ -13,7 +13,7 @@ import (
"time"
"github.com/holiman/uint256"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/log/v3"
"github.com/spf13/cobra"
diff --git a/cmd/sentinel/sentinel/peers/manager.go b/cmd/sentinel/sentinel/peers/manager.go
index 51840e54fee..90fd0619aff 100644
--- a/cmd/sentinel/sentinel/peers/manager.go
+++ b/cmd/sentinel/sentinel/peers/manager.go
@@ -6,7 +6,7 @@ import (
"time"
"github.com/ledgerwatch/erigon/cl/phase1/core/state/lru"
- "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/peer"
)
@@ -120,7 +120,7 @@ func (m *Manager) run(ctx context.Context) {
func (m *Manager) gc() {
m.mu.Lock()
defer m.mu.Unlock()
- t := methelp.NewHistTimer("beacon_peer_manager_gc_time")
+ t := metrics.NewHistTimer("beacon_peer_manager_gc_time")
defer t.PutSince()
deleted := 0
saw := 0
diff --git a/consensus/bor/heimdall/metrics.go b/consensus/bor/heimdall/metrics.go
index f3dc58c058d..8f615e66883 100644
--- a/consensus/bor/heimdall/metrics.go
+++ b/consensus/bor/heimdall/metrics.go
@@ -4,9 +4,8 @@ import (
"context"
"time"
+ "github.com/VictoriaMetrics/metrics"
metrics2 "github.com/VictoriaMetrics/metrics"
- "github.com/ledgerwatch/erigon/metrics/methelp"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
)
type (
@@ -56,7 +55,7 @@ var (
true: metrics.GetOrCreateCounter("client_requests_checkpoint_valid"),
false: metrics.GetOrCreateCounter("client_requests_checkpoint_invalid"),
},
- timer: methelp.GetOrCreateSummary("client_requests_checkpoint_duration"),
+ timer: metrics.GetOrCreateSummary("client_requests_checkpoint_duration"),
},
checkpointCountRequest: {
request: map[bool]*metrics2.Counter{
diff --git a/core/blockchain.go b/core/blockchain.go
index ff979a721cd..283487aef28 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -21,7 +21,7 @@ import (
"fmt"
"time"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
"golang.org/x/crypto/sha3"
"golang.org/x/exp/slices"
diff --git a/eth/stagedsync/all_stages.go b/eth/stagedsync/all_stages.go
index 838fe4d9c52..48f310d6676 100644
--- a/eth/stagedsync/all_stages.go
+++ b/eth/stagedsync/all_stages.go
@@ -7,7 +7,7 @@ import (
"github.com/huandu/xstrings"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon/eth/stagedsync/stages"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
)
var syncMetrics = map[stages.SyncStage]*metrics2.Counter{}
diff --git a/metrics/prometheus/collector.go b/metrics/collector.go
similarity index 99%
rename from metrics/prometheus/collector.go
rename to metrics/collector.go
index 938dd29bf3f..7358994a307 100644
--- a/metrics/prometheus/collector.go
+++ b/metrics/collector.go
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see .
-package prometheus
+package metrics
import (
"bytes"
diff --git a/metrics/exp/exp.go b/metrics/exp.go
similarity index 80%
rename from metrics/exp/exp.go
rename to metrics/exp.go
index 96015a62418..6f1b9c20d20 100644
--- a/metrics/exp/exp.go
+++ b/metrics/exp.go
@@ -1,13 +1,11 @@
// Hook go-metrics into expvar
// on any /debug/metrics request, load all vars from the registry into expvar, and execute regular expvar handler
-package exp
+package metrics
import (
"fmt"
"net/http"
- "github.com/ledgerwatch/erigon/metrics"
- "github.com/ledgerwatch/erigon/metrics/prometheus"
"github.com/ledgerwatch/log/v3"
)
@@ -16,7 +14,7 @@ import (
func Setup(address string, logger log.Logger) *http.ServeMux {
prometheusMux := http.NewServeMux()
- prometheusMux.Handle("/debug/metrics/prometheus", prometheus.Handler(metrics.DefaultRegistry))
+ prometheusMux.Handle("/debug/metrics/prometheus", Handler(DefaultRegistry))
promServer := &http.Server{
Addr: address,
diff --git a/metrics/prometheus/prometheus.go b/metrics/prometheus.go
similarity index 95%
rename from metrics/prometheus/prometheus.go
rename to metrics/prometheus.go
index 5228009efc5..e21bf025f15 100644
--- a/metrics/prometheus/prometheus.go
+++ b/metrics/prometheus.go
@@ -15,7 +15,7 @@
// along with the go-ethereum library. If not, see .
// Package prometheus exposes go-metrics into a Prometheus format.
-package prometheus
+package metrics
import (
"fmt"
@@ -23,14 +23,13 @@ import (
"sort"
metrics2 "github.com/VictoriaMetrics/metrics"
- "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/log/v3"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/expfmt"
)
// Handler returns an HTTP handler which dump metrics in Prometheus format.
-func Handler(reg metrics.Registry) http.Handler {
+func Handler(reg Registry) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Gather and pre-sort the metrics to avoid random listings
var names []string
diff --git a/metrics/methelp/register.go b/metrics/register.go
similarity index 70%
rename from metrics/methelp/register.go
rename to metrics/register.go
index 38405b4a924..9920508bca5 100644
--- a/metrics/methelp/register.go
+++ b/metrics/register.go
@@ -1,36 +1,35 @@
-package methelp
+package metrics
import (
metrics2 "github.com/VictoriaMetrics/metrics"
- metrics "github.com/ledgerwatch/erigon/metrics"
)
func GetOrCreateCounter(s string, isGauge ...bool) *metrics2.Counter {
counter := metrics2.GetOrCreateCounter(s, isGauge...)
- metrics.DefaultRegistry.Register(s, counter)
+ DefaultRegistry.Register(s, counter)
return counter
}
func GetOrCreateGauge(s string, f func() float64) *metrics2.Gauge {
gauge := metrics2.GetOrCreateGauge(s, f)
- metrics.DefaultRegistry.Register(s, gauge)
+ DefaultRegistry.Register(s, gauge)
return gauge
}
func GetOrCreateFloatCounter(s string) *metrics2.FloatCounter {
floatCounter := metrics2.GetOrCreateFloatCounter(s)
- metrics.DefaultRegistry.Register(s, floatCounter)
+ DefaultRegistry.Register(s, floatCounter)
return floatCounter
}
func GetOrCreateSummary(s string) *metrics2.Summary {
summary := metrics2.GetOrCreateSummary(s)
- metrics.DefaultRegistry.Register(s, summary)
+ DefaultRegistry.Register(s, summary)
return summary
}
func GetOrCreateHistogram(s string) *metrics2.Histogram {
histogram := metrics2.GetOrCreateHistogram(s)
- metrics.DefaultRegistry.Register(s, histogram)
+ DefaultRegistry.Register(s, histogram)
return histogram
}
diff --git a/metrics/methelp/timer.go b/metrics/timer.go
similarity index 98%
rename from metrics/methelp/timer.go
rename to metrics/timer.go
index 3aefda89d1b..c13429c1181 100644
--- a/metrics/methelp/timer.go
+++ b/metrics/timer.go
@@ -1,4 +1,4 @@
-package methelp
+package metrics
import (
"fmt"
diff --git a/p2p/metrics.go b/p2p/metrics.go
index ac08f7ac1be..322e141d2fb 100644
--- a/p2p/metrics.go
+++ b/p2p/metrics.go
@@ -21,7 +21,7 @@ package p2p
import (
"net"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
)
const (
diff --git a/p2p/peer.go b/p2p/peer.go
index d783dafbf7a..a20adc7dc64 100644
--- a/p2p/peer.go
+++ b/p2p/peer.go
@@ -30,7 +30,7 @@ import (
"github.com/ledgerwatch/erigon/common/debug"
"github.com/ledgerwatch/erigon/common/mclock"
"github.com/ledgerwatch/erigon/event"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/erigon/p2p/enode"
"github.com/ledgerwatch/erigon/p2p/enr"
"github.com/ledgerwatch/erigon/rlp"
diff --git a/p2p/transport_test.go b/p2p/transport_test.go
index 9e38e1eba75..37eb84ea8ff 100644
--- a/p2p/transport_test.go
+++ b/p2p/transport_test.go
@@ -19,11 +19,12 @@ package p2p
import (
"bytes"
"errors"
- "github.com/ledgerwatch/erigon/rlp"
"reflect"
"sync"
"testing"
+ "github.com/ledgerwatch/erigon/rlp"
+
"github.com/davecgh/go-spew/spew"
"github.com/ledgerwatch/erigon/crypto"
"github.com/ledgerwatch/erigon/p2p/simulations/pipes"
diff --git a/rpc/metrics.go b/rpc/metrics.go
index 0520ae7e8d3..bc4ed50571c 100644
--- a/rpc/metrics.go
+++ b/rpc/metrics.go
@@ -20,7 +20,7 @@ import (
"fmt"
metrics2 "github.com/VictoriaMetrics/metrics"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
)
var (
diff --git a/turbo/debug/flags.go b/turbo/debug/flags.go
index 7d7fd10a969..7e534c88a5f 100644
--- a/turbo/debug/flags.go
+++ b/turbo/debug/flags.go
@@ -32,7 +32,7 @@ import (
"github.com/ledgerwatch/erigon/common/fdlimit"
"github.com/ledgerwatch/erigon/diagnostics"
- "github.com/ledgerwatch/erigon/metrics/exp"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/erigon/turbo/logging"
)
@@ -159,7 +159,7 @@ func SetupCobra(cmd *cobra.Command, filePrefix string) log.Logger {
if metricsEnabled && metricsAddr != "" {
metricsAddress = fmt.Sprintf("%s:%d", metricsAddr, metricsPort)
- metricsMux = exp.Setup(metricsAddress, logger)
+ metricsMux = metrics.Setup(metricsAddress, logger)
}
if pprof {
@@ -207,7 +207,7 @@ func Setup(ctx *cli.Context, rootLogger bool) (log.Logger, error) {
if metricsEnabled && (!pprofEnabled || metricsAddr != "") {
metricsPort := ctx.Int(metricsPortFlag.Name)
metricsAddress = fmt.Sprintf("%s:%d", metricsAddr, metricsPort)
- metricsMux = exp.Setup(metricsAddress, logger)
+ metricsMux = metrics.Setup(metricsAddress, logger)
diagnostics.SetupLogsAccess(ctx, metricsMux)
diagnostics.SetupDbAccess(ctx, metricsMux)
diagnostics.SetupCmdLineAccess(metricsMux)
diff --git a/turbo/shards/state_cache.go b/turbo/shards/state_cache.go
index a7603ec9cea..2a5ab4cff41 100644
--- a/turbo/shards/state_cache.go
+++ b/turbo/shards/state_cache.go
@@ -10,7 +10,7 @@ import (
"github.com/google/btree"
"github.com/holiman/uint256"
libcommon "github.com/ledgerwatch/erigon-lib/common"
- metrics "github.com/ledgerwatch/erigon/metrics/methelp"
+ "github.com/ledgerwatch/erigon/metrics"
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/core/types/accounts"