From fd0648471f8ee900d5034987f13a74c3d80a9d6e Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 30 May 2018 08:18:40 -0700 Subject: [PATCH] modules/console: Add tag commit count to peer table. --- modules/console.cc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/console.cc b/modules/console.cc index 171901431..19603ee1e 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -2038,12 +2038,13 @@ console_cmd__peer(opt &out, const string_view &line) else out << ' ' << setw(22) << left << " "; - out << " " << setw(2) << right << peer.link_count() << " L" - << " " << setw(2) << right << peer.tag_count() << " T" - << " " << setw(9) << right << peer.write_size() << " UP Q" - << " " << setw(9) << right << peer.read_size() << " DN Q" - << " " << setw(9) << right << peer.write_total() << " UP" - << " " << setw(9) << right << peer.read_total() << " DN" + out << " " << setw(2) << right << peer.link_count() << " L" + << " " << setw(2) << right << peer.tag_count() << " T" + << " " << setw(2) << right << peer.tag_committed() << " TC" + << " " << setw(9) << right << peer.write_size() << " UP Q" + << " " << setw(9) << right << peer.read_size() << " DN Q" + << " " << setw(9) << right << peer.write_total() << " UP" + << " " << setw(9) << right << peer.read_total() << " DN" ; if(peer.err_has() && peer.err_msg())