Suggestions:
-Information regarding the node software
- Client Type(Geth/Parity), (admin.nodeInfo)
- API vesion,
- Number of connected Peers (admin.peers)
- IP Address
-Information for the chain: apart from the syncing status, include:
- Network GAS,
- Estimated status to sync with percentage - try this on the geth attach console to see what I mean
var lastPercentage = 0;var lastBlocksToGo = 0;var timeInterval = 1000;
setInterval(function(){
var percentage = eth.syncing.currentBlock/eth.syncing.highestBlock*100;
var percentagePerTime = percentage - lastPercentage;
var blocksToGo = eth.syncing.highestBlock - eth.syncing.currentBlock;
var bps = (lastBlocksToGo - blocksToGo) / (timeInterval / 1000)
var etas = 100 / percentagePerTime * (timeInterval / 1000)
var etaM = parseInt(etas/60,10);
console.log(parseInt(percentage,10)+'% ETA: '+etaM+' minutes @ '+bps+'bps');
lastPercentage = percentage;lastBlocksToGo = blocksToGo;
},timeInterval);
- Network Hashrate,
- Current Size on Disk
Let me know if I can help in any way.
Suggestions:
-Information regarding the node software
-Information for the chain: apart from the syncing status, include:
Let me know if I can help in any way.