You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Returns a network peer connections dashboard with information from the remote server.\n"
581
+
"This human-readable interface will change regularly and is not intended to be a stable API.\n"
582
+
"Under the hood, -netinfo fetches the data by calling getpeerinfo and getnetworkinfo.\n"
583
+
+ strprintf("An optional integer argument from 0 to %d can be passed for different peers listings; %d to 255 are parsed as %d.\n", MAX_DETAIL_LEVEL, MAX_DETAIL_LEVEL, MAX_DETAIL_LEVEL) +
584
+
"Pass \"help\" to see this detailed help documentation.\n"
585
+
"If more than one argument is passed, only the first one is read and parsed.\n"
586
+
"Suggestion: use with the Linux watch(1) command for a live dashboard; see example below.\n\n"
587
+
"Arguments:\n"
588
+
+ strprintf("1. level (integer 0-%d, optional) Specify the info level of the peers dashboard (default 0):\n", MAX_DETAIL_LEVEL) +
589
+
" 0 - Connection counts and local addresses\n"
590
+
" 1 - Like 0 but with a peers listing (without address or version columns)\n"
591
+
" 2 - Like 1 but with an address column\n"
592
+
" 3 - Like 1 but with a version column\n"
593
+
" 4 - Like 1 but with both address and version columns\n"
594
+
"2. help (string \"help\", optional) Print this help documentation instead of the dashboard.\n\n"
595
+
"Result:\n\n"
596
+
+ strprintf("* The peers listing in levels 1-%d displays all of the peers sorted by direction and minimum ping time:\n\n", MAX_DETAIL_LEVEL) +
597
+
" Column Description\n"
598
+
" ------ -----------\n"
599
+
" <-> Direction\n"
600
+
"\"in\" - inbound connections are those initiated by the peer\n"
601
+
"\"out\" - outbound connections are those initiated by us\n"
602
+
" type Type of peer connection\n"
603
+
"\"full\" - full relay, the default\n"
604
+
"\"block\" - block relay; like full relay but does not relay transactions or addresses\n"
605
+
"\"manual\" - peer we manually added using RPC addnode or the -addnode/-connect config options\n"
606
+
"\"feeler\" - short-lived connection for testing addresses\n"
607
+
"\"addr\" - address fetch; short-lived connection for requesting addresses\n"
608
+
" net Network the peer connected through (\"ipv4\", \"ipv6\", \"onion\", \"i2p\", or \"cjdns\")\n"
609
+
" mping Minimum observed ping time, in milliseconds (ms)\n"
610
+
" ping Last observed ping time, in milliseconds (ms)\n"
611
+
" send Time since last message sent to the peer, in seconds\n"
612
+
" recv Time since last message received from the peer, in seconds\n"
613
+
" txn Time since last novel transaction received from the peer and accepted into our mempool, in minutes\n"
614
+
" blk Time since last novel block passing initial validity checks received from the peer, in minutes\n"
615
+
" age Duration of connection to the peer, in minutes\n"
616
+
" asmap Mapped AS (Autonomous System) number in the BGP route to the peer, used for diversifying\n"
617
+
" peer selection (only displayed if the -asmap config option is set)\n"
618
+
" id Peer index, in increasing order of peer connections since node startup\n"
619
+
" address IP address and port of the peer\n"
620
+
" version Peer version and subversion concatenated, e.g. \"70016/Satoshi:21.0.0/\"\n\n"
621
+
"* The connection counts table displays the number of peers by direction, network, and the totals\n"
622
+
" for each, as well as two special outbound columns for block relay peers and manual peers.\n\n"
623
+
"* The local addresses table lists each local address broadcast by the node, the port, and the score.\n\n"
0 commit comments