statistics property

Map<String, dynamic> get statistics

Statistics about tracker performance

Implementation

Map<String, dynamic> get statistics => {
  'activePeers': activePeerCount,
  'networkHeight': networkHeight,
  'bestTipConfidence': _bestTip?.confidence ?? 0.0,
  'totalTipUpdates': _totalTipUpdates,
  'reorganizationsDetected': _reorganizationsDetected,
  'lastReorganizationAt': _lastReorgAt?.toIso8601String(),
  'currentTipAge': _bestTip?.age.inSeconds,
  'potentialReorgs': _potentialReorgs.length,
};