mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-15 03:11:50 +00:00
Add bytes_sent and bytes_recvd to getSwitchPorts
This commit is contained in:
parent
b368421dbd
commit
3f8a4ab17d
1 changed files with 2 additions and 0 deletions
|
@ -510,6 +510,8 @@ func (a *admin) getData_getSwitchPeers() []admin_nodeInfo {
|
||||||
{"ip", net.IP(addr[:]).String()},
|
{"ip", net.IP(addr[:]).String()},
|
||||||
{"coords", fmt.Sprint(coords)},
|
{"coords", fmt.Sprint(coords)},
|
||||||
{"port", elem.port},
|
{"port", elem.port},
|
||||||
|
{"bytes_sent", atomic.LoadUint64(&peer.bytesSent)},
|
||||||
|
{"bytes_recvd", atomic.LoadUint64(&peer.bytesRecvd)},
|
||||||
}
|
}
|
||||||
peerInfos = append(peerInfos, info)
|
peerInfos = append(peerInfos, info)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue