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
Copy file name to clipboardexpand all lines: docs/software/admin.md
+19
Original file line number
Diff line number
Diff line change
@@ -819,6 +819,8 @@ Once the responses are received, the `getsurveyresult` command will return a res
819
819
],
820
820
"numTotalInboundPeers" : 2,
821
821
"numTotalOutboundPeers" : 0,
822
+
"maxInboundPeerCount" : 64,
823
+
"maxOutboundPeerCount" : 8,
822
824
"outboundPeers" : null
823
825
}
824
826
}
@@ -833,7 +835,24 @@ Notable field definitions
833
835
*`badResponseNodes` : List of nodes that sent a malformed response
834
836
*`topology` : Map of nodes to connection information
835
837
*`inboundPeers`/`outboundPeers` : List of connection information by nodes
838
+
*`bytesRead`: The total number of bytes read from this peer.
839
+
*`bytesWritten`: The total number of bytes written to this peer.
840
+
*`duplicateFetchBytesRecv`: The number of bytes received that were duplicate transaction sets and quorum sets.
841
+
*`duplicateFetchMessageRecv`: The count of duplicate transaction sets and quorum sets received from this peer.
842
+
*`duplicateFloodBytesRecv`: The number of bytes received that were transactions and SCP votes duplicates.
843
+
*`duplicateFloodMessageRecv`: The count of duplicate transactions and SCP votes received from this peer.
844
+
*`messagesRead`: The total number of messages read from this peer.
845
+
*`messagesWritten`: The total number of messages written to this peer.
846
+
*`nodeId`: Node's public key.
847
+
*`secondsConnected`: The total number of seconds this peer has been connected to the surveyed node.
848
+
*`uniqueFetchBytesRecv`: The number of bytes received that were unique transaction sets and quorum sets.
849
+
*`uniqueFetchMessageRecv`: The count of unique transaction sets and quorum sets received from this peer.
850
+
*`uniqueFloodBytesRecv`: The number of bytes received that were unique transactions and SCP votes.
851
+
*`uniqueFloodMessageRecv`: The count of unique transactions and SCP votes received from this peer.
852
+
*`version`: stellar-core version.
853
+
836
854
*`numTotalInboundPeers`/`numTotalOutboundPeers` : The number of total inbound and outbound peers this node is connected to. The response will have a random subset of 25 connected peers per direction (inbound/outbound). These fields tell you if you're missing nodes so you can send another request out to get another random subset of nodes.
855
+
*`maxInboundPeerCount`/`maxOutboundPeerCount` : The number of total inbound and outbound peers that this node can accept. These fields correspond to stellar-core configurations `MAX_ADDITIONAL_PEER_CONNECTIONS` and `TARGET_PEER_CONNECTIONS`, respectively.
- sub command `augment` - analyze an existing graph
22
+
- sub command `augment` - augment an existing graph with information from stellarbeat.io. Currently, only Public Network graphs are supported.
23
23
-`-gmli GRAPHMLINPUT` - input graphml file
24
24
-`-gmlo GRAPHMLOUTPUT` - output graphml file
25
25
- sub command `flatten` - Take a graphml file containing a bidrectional graph (possibly augmented with StellarBeat data) and flatten it into an undirected graph in JSON.
0 commit comments