-
Notifications
You must be signed in to change notification settings - Fork 21.5k
p2p/discover: add traffic metrics #27008
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| package discover | ||
|
|
||
| import ( | ||
| "net" | ||
|
|
||
| "github.com/ethereum/go-ethereum/metrics" | ||
| ) | ||
|
|
||
| const ( | ||
| moduleName = "discover" | ||
| // ingressMeterName is the prefix of the per-packet inbound metrics. | ||
| ingressMeterName = moduleName + "/ingress" | ||
|
|
||
| // egressMeterName is the prefix of the per-packet outbound metrics. | ||
| egressMeterName = moduleName + "/egress" | ||
| ) | ||
|
|
||
| var ( | ||
| ingressTrafficMeter = metrics.NewRegisteredMeter(ingressMeterName, nil) | ||
| egressTrafficMeter = metrics.NewRegisteredMeter(egressMeterName, nil) | ||
| ) | ||
|
|
||
| // meteredConn is a wrapper around a net.UDPConn that meters both the | ||
| // inbound and outbound network traffic. | ||
| type meteredUdpConn struct { | ||
| UDPConn | ||
| } | ||
|
|
||
| func newMeteredConn(conn UDPConn) UDPConn { | ||
| // Short circuit if metrics are disabled | ||
| if !metrics.Enabled { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not fully sure that we should use The former one will be enabled once the metric system is turned on. The latter one is more for debug purpose which might impact runtime performance.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's OK to use |
||
| return conn | ||
| } | ||
|
|
||
| return &meteredUdpConn{UDPConn: conn} | ||
| } | ||
|
|
||
| // Read delegates a network read to the underlying connection, bumping the udp ingress traffic meter along the way. | ||
| func (c *meteredUdpConn) ReadFromUDP(b []byte) (n int, addr *net.UDPAddr, err error) { | ||
| n, addr, err = c.UDPConn.ReadFromUDP(b) | ||
| ingressTrafficMeter.Mark(int64(n)) | ||
| return n, addr, err | ||
| } | ||
|
|
||
| // Write delegates a network write to the underlying connection, bumping the udp egress traffic meter along the way. | ||
| func (c *meteredUdpConn) WriteToUDP(b []byte, addr *net.UDPAddr) (n int, err error) { | ||
| n, err = c.UDPConn.WriteToUDP(b, addr) | ||
| egressTrafficMeter.Mark(int64(n)) | ||
| return n, err | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.