mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 12:52:35 -03:00
cli: create peer connections report sorted by dir, minping
This commit is contained in:
parent
f5edd66e5d
commit
ce57bf6cc0
1 changed files with 35 additions and 0 deletions
|
@ -374,8 +374,11 @@ public:
|
|||
if (!batch[ID_NETWORKINFO]["error"].isNull()) return batch[ID_NETWORKINFO];
|
||||
|
||||
// Count peer connection totals, and if m_verbose is true, store peer data in a vector of structs.
|
||||
const int64_t time_now{GetSystemTimeInSeconds()};
|
||||
int ipv4_i{0}, ipv6_i{0}, onion_i{0}, block_relay_i{0}, total_i{0}; // inbound conn counters
|
||||
int ipv4_o{0}, ipv6_o{0}, onion_o{0}, block_relay_o{0}, total_o{0}; // outbound conn counters
|
||||
size_t max_peer_id_length{2}, max_version_length{1};
|
||||
bool is_asmap_on{false};
|
||||
std::vector<Peer> peers;
|
||||
const UniValue& getpeerinfo{batch[ID_PEERINFO]["result"]};
|
||||
|
||||
|
@ -420,6 +423,9 @@ public:
|
|||
const double min_ping{peer["minping"].isNull() ? -1 : peer["minping"].get_real()};
|
||||
const double ping{peer["pingtime"].isNull() ? -1 : peer["pingtime"].get_real()};
|
||||
peers.push_back({peer_id, mapped_as, version, conn_time, last_recv, last_send, min_ping, ping, addr, sub_version, net_type, is_block_relay, !is_inbound});
|
||||
max_peer_id_length = std::max(ToString(peer_id).length(), max_peer_id_length);
|
||||
max_version_length = std::max((ToString(version) + sub_version).length(), max_version_length);
|
||||
is_asmap_on |= (mapped_as != 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -427,6 +433,35 @@ public:
|
|||
const UniValue& networkinfo{batch[ID_NETWORKINFO]["result"]};
|
||||
std::string result{strprintf("%s %s%s - %i%s\n\n", PACKAGE_NAME, FormatFullVersion(), ChainToString(), networkinfo["protocolversion"].get_int(), networkinfo["subversion"].get_str())};
|
||||
|
||||
// Report detailed peer connections list sorted by direction and minimum ping time.
|
||||
if (m_verbose && !peers.empty()) {
|
||||
std::sort(peers.begin(), peers.end());
|
||||
result += "Peer connections sorted by direction and min ping\n<-> relay net minping ping lastsend lastrecv uptime ";
|
||||
if (is_asmap_on) result += " asmap ";
|
||||
result += strprintf("%*s %-*s address\n", max_peer_id_length, "id", max_version_length, "version");
|
||||
for (const Peer& peer : peers) {
|
||||
std::string version{ToString(peer.version) + peer.sub_version};
|
||||
result += strprintf(
|
||||
"%3s %5s %5s%8s%7s %8s %8s%7s%*i %*s %-*s %s\n",
|
||||
peer.is_outbound ? "out" : "in",
|
||||
peer.is_block_relay ? "block" : "full",
|
||||
NetTypeEnumToString(peer.net_type),
|
||||
peer.min_ping == -1 ? "" : ToString(round(1000 * peer.min_ping)),
|
||||
peer.ping == -1 ? "" : ToString(round(1000 * peer.ping)),
|
||||
peer.last_send == 0 ? "" : ToString(time_now - peer.last_send),
|
||||
peer.last_recv == 0 ? "" : ToString(time_now - peer.last_recv),
|
||||
peer.conn_time == 0 ? "" : ToString((time_now - peer.conn_time) / 60),
|
||||
is_asmap_on ? 7 : 0, // variable spacing
|
||||
is_asmap_on && peer.mapped_as != 0 ? ToString(peer.mapped_as) : "",
|
||||
max_peer_id_length, // variable spacing
|
||||
peer.id,
|
||||
max_version_length, // variable spacing
|
||||
version == "0" ? "" : version,
|
||||
peer.addr);
|
||||
}
|
||||
result += " ms ms sec sec min\n\n";
|
||||
}
|
||||
|
||||
// Report peer connection totals by type.
|
||||
total_i = ipv4_i + ipv6_i + onion_i;
|
||||
total_o = ipv4_o + ipv6_o + onion_o;
|
||||
|
|
Loading…
Reference in a new issue