2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-06-21 17:23:37 +00:00
|
|
|
// Contains the meters and timers used by the networking layer.
|
|
|
|
|
|
|
|
package p2p
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
|
2015-06-29 13:11:01 +00:00
|
|
|
"github.com/ethereum/go-ethereum/metrics"
|
2015-06-21 17:23:37 +00:00
|
|
|
)
|
|
|
|
|
2018-10-15 22:40:51 +00:00
|
|
|
const (
|
2021-03-26 12:00:06 +00:00
|
|
|
// ingressMeterName is the prefix of the per-packet inbound metrics.
|
2020-02-17 11:22:15 +00:00
|
|
|
ingressMeterName = "p2p/ingress"
|
2021-03-26 12:00:06 +00:00
|
|
|
|
|
|
|
// egressMeterName is the prefix of the per-packet outbound metrics.
|
|
|
|
egressMeterName = "p2p/egress"
|
|
|
|
|
|
|
|
// HandleHistName is the prefix of the per-packet serving time histograms.
|
|
|
|
HandleHistName = "p2p/handle"
|
2018-10-15 22:40:51 +00:00
|
|
|
)
|
|
|
|
|
2015-06-21 17:23:37 +00:00
|
|
|
var (
|
2020-02-17 11:22:15 +00:00
|
|
|
ingressConnectMeter = metrics.NewRegisteredMeter("p2p/serves", nil)
|
|
|
|
ingressTrafficMeter = metrics.NewRegisteredMeter(ingressMeterName, nil)
|
|
|
|
egressConnectMeter = metrics.NewRegisteredMeter("p2p/dials", nil)
|
|
|
|
egressTrafficMeter = metrics.NewRegisteredMeter(egressMeterName, nil)
|
|
|
|
activePeerGauge = metrics.NewRegisteredGauge("p2p/peers", nil)
|
2018-10-15 22:40:51 +00:00
|
|
|
)
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
// meteredConn is a wrapper around a net.Conn that meters both the
|
2015-06-21 17:23:37 +00:00
|
|
|
// inbound and outbound network traffic.
|
|
|
|
type meteredConn struct {
|
2020-02-17 11:22:15 +00:00
|
|
|
net.Conn
|
2015-06-21 17:23:37 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 22:40:51 +00:00
|
|
|
// newMeteredConn creates a new metered connection, bumps the ingress or egress
|
|
|
|
// connection meter and also increases the metered peer count. If the metrics
|
2020-02-17 11:22:15 +00:00
|
|
|
// system is disabled, function returns the original connection.
|
dashboard: send current block to the dashboard client (#19762)
This adds all dashboard changes from the last couple months.
We're about to remove the dashboard, but decided that we should
get all the recent work in first in case anyone wants to pick up this
project later on.
* cmd, dashboard, eth, p2p: send peer info to the dashboard
* dashboard: update npm packages, improve UI, rebase
* dashboard, p2p: remove println, change doc
* cmd, dashboard, eth, p2p: cleanup after review
* dashboard: send current block to the dashboard client
2019-11-13 11:13:13 +00:00
|
|
|
func newMeteredConn(conn net.Conn, ingress bool, addr *net.TCPAddr) net.Conn {
|
2015-07-02 11:13:46 +00:00
|
|
|
// Short circuit if metrics are disabled
|
|
|
|
if !metrics.Enabled {
|
|
|
|
return conn
|
|
|
|
}
|
2018-10-15 22:40:51 +00:00
|
|
|
// Bump the connection counters and wrap the connection
|
2015-06-21 17:23:37 +00:00
|
|
|
if ingress {
|
|
|
|
ingressConnectMeter.Mark(1)
|
|
|
|
} else {
|
|
|
|
egressConnectMeter.Mark(1)
|
|
|
|
}
|
2019-09-10 11:39:07 +00:00
|
|
|
activePeerGauge.Inc(1)
|
2020-02-17 11:22:15 +00:00
|
|
|
return &meteredConn{Conn: conn}
|
2015-06-21 17:23:37 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 22:40:51 +00:00
|
|
|
// Read delegates a network read to the underlying connection, bumping the common
|
|
|
|
// and the peer ingress traffic meters along the way.
|
2015-06-21 17:23:37 +00:00
|
|
|
func (c *meteredConn) Read(b []byte) (n int, err error) {
|
2018-06-20 12:06:27 +00:00
|
|
|
n, err = c.Conn.Read(b)
|
2015-06-21 17:23:37 +00:00
|
|
|
ingressTrafficMeter.Mark(int64(n))
|
2018-10-15 22:40:51 +00:00
|
|
|
return n, err
|
2015-06-21 17:23:37 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 22:40:51 +00:00
|
|
|
// Write delegates a network write to the underlying connection, bumping the common
|
|
|
|
// and the peer egress traffic meters along the way.
|
2015-06-21 17:23:37 +00:00
|
|
|
func (c *meteredConn) Write(b []byte) (n int, err error) {
|
2018-06-20 12:06:27 +00:00
|
|
|
n, err = c.Conn.Write(b)
|
2015-06-21 17:23:37 +00:00
|
|
|
egressTrafficMeter.Mark(int64(n))
|
2018-10-15 22:40:51 +00:00
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close delegates a close operation to the underlying connection, unregisters
|
|
|
|
// the peer from the traffic registries and emits close event.
|
|
|
|
func (c *meteredConn) Close() error {
|
|
|
|
err := c.Conn.Close()
|
2020-02-17 11:22:15 +00:00
|
|
|
if err == nil {
|
2019-09-10 11:39:07 +00:00
|
|
|
activePeerGauge.Dec(1)
|
2018-10-15 22:40:51 +00:00
|
|
|
}
|
|
|
|
return err
|
2015-06-21 17:23:37 +00:00
|
|
|
}
|