-
Notifications
You must be signed in to change notification settings - Fork 214
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
[Merged by Bors] - api: add hole punching info and data transfer stats #5792
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #5792 +/- ##
========================================
Coverage 81.3% 81.4%
========================================
Files 296 297 +1
Lines 31667 31965 +298
========================================
+ Hits 25764 26036 +272
- Misses 4214 4231 +17
- Partials 1689 1698 +9 ☔ View full report in Codecov by Sentry. |
bors try |
tryBuild failed: |
Partition test flake:
|
bors try |
tryBuild succeeded: |
3934e9d
to
c451fae
Compare
This includes connection kind (relay / hole punching information) and client/server request and transfer statistics.
d5317c3
to
88ed2e8
Compare
go.mod
Outdated
@@ -38,7 +38,7 @@ require ( | |||
github.com/rs/cors v1.11.0 | |||
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 | |||
github.com/seehuhn/mt19937 v1.0.0 | |||
github.com/spacemeshos/api/release/go v1.42.0 | |||
github.com/spacemeshos/api/release/go v1.42.1-0.20240530113900-b81297d5714c |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR in the api repo needs to be merged first I assume?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I planned to do so after I address all the other comments here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, remember to first merge and release spacemeshos/api#322 🙂
bors merge |
## Motivation Current `AdminService.PeerInfoStream` doesn't provide enough information about whether hole punching was used while connecting to a particular peer, and also doesn't reflect actual utilization of each peer, which makes it harder to see whether the peer connections are being used efficiently. Also, importantly, in case if `go-spacemesh` causes network overload it may be hard to find out what kind of traffic is causing the problems. It would be nice to have some overview of the traffic even in case if the metrics are disabled. The current data transfer rates should be easy to view even without any Prometheus to do `rate` calculations.
Pull request successfully merged into develop. Build succeeded:
|
Motivation
Current
AdminService.PeerInfoStream
doesn't provide enough information about whether hole punching was used while connecting to a particular peer, and also doesn't reflect actual utilization of each peer, which makes it harder to see whether the peer connections are being used efficiently.Also, importantly, in case if
go-spacemesh
causes network overload it may be hard to find out what kind of traffic is causing the problems. It would be nice to have some overview of the traffic even in case if the metrics are disabled. The current data transfer rates should be easy to view even without any Prometheus to dorate
calculations.Description
AdminService.PeerInfoStream
response is extended with new fields.This includes connection kind (relay / hole punching information, with
HPInbound
andHPOutbound
meaning inbound and out-bound hole-punching, respectively) and client/server request and transfer statistics. Also, it includes the data transfer rates (bytes/s) calculated over 10s and 1m periods.The peer records look like this (not using actual IPs or peer IDs):
The output of
spacemesh.v1.DebugService.NetworkInfo
now looks like:Test Plan
Tested on a mainnet node
TODO