-
Notifications
You must be signed in to change notification settings - Fork 811
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
nat_open
no longer reports correctly on latest unstable
(v5.1.0)
#5384
Comments
I think we now report two kinds. One for tcp and one for udp. So we have to update our metrics and this RPC request I think. |
Based on my understanding, before #5314, lighthouse/beacon_node/lighthouse_network/src/metrics.rs Lines 172 to 173 in 50c423a
Now, lighthouse/common/system_health/src/lib.rs Line 217 in a89ff10
So a quick solution that comes to my mind is to update - discv5_nat && libp2p_nat
+ discv5_nat || libp2p_nat What do you think? cc @jxs |
thanks for noticing and submitting this Jimmy, and Akihito for the fix! Submitted #5427 5427 |
The fix has been released in https://github.com/sigp/lighthouse/releases/tag/v5.1.2 🚀 |
Description
The
nat_open
metric exposed via the/metrics
endpoint and thelighthouse/ui/health
endpoint doesn't seem to be reporting the status anymore on latestunstable
. It seems to be related to the change from #5314.Version
unstable
(v5.1.0 release candidate)Present Behaviour
nat_open
metric not available on/metrics
.nat_open
alwaysfalse
onlighthouse/ui/health
even when the node is reachable from external nodes.Expected Behaviour
nat_open
metric should be available and should returntrue
if node is reachable.The text was updated successfully, but these errors were encountered: