logging improvements and cleaning up
This commit is contained in:
parent
e4da3e4f67
commit
b6470707a8
|
@ -87,7 +87,7 @@ proc decodeMsg*(buf: seq[byte]): Option[IdentifyInfo] =
|
||||||
iinfo.protoVersion = some(protoVersion)
|
iinfo.protoVersion = some(protoVersion)
|
||||||
if r6.get():
|
if r6.get():
|
||||||
iinfo.agentVersion = some(agentVersion)
|
iinfo.agentVersion = some(agentVersion)
|
||||||
trace "decodeMsg: decoded message", pubkey = ($pubKey).shortLog,
|
debug "decodeMsg: decoded message", pubkey = ($pubKey).shortLog,
|
||||||
addresses = $iinfo.addrs, protocols = $iinfo.protos,
|
addresses = $iinfo.addrs, protocols = $iinfo.protos,
|
||||||
observable_address = $iinfo.observedAddr,
|
observable_address = $iinfo.observedAddr,
|
||||||
proto_version = $iinfo.protoVersion,
|
proto_version = $iinfo.protoVersion,
|
||||||
|
|
|
@ -181,7 +181,7 @@ proc init*(_: type[GossipSubParams]): GossipSubParams =
|
||||||
decayInterval: 1.seconds,
|
decayInterval: 1.seconds,
|
||||||
decayToZero: 0.01,
|
decayToZero: 0.01,
|
||||||
retainScore: 10.seconds,
|
retainScore: 10.seconds,
|
||||||
appSpecificWeight: 1.0,
|
appSpecificWeight: 0.0,
|
||||||
ipColocationFactorWeight: 0.0,
|
ipColocationFactorWeight: 0.0,
|
||||||
ipColocationFactorThreshold: 1.0,
|
ipColocationFactorThreshold: 1.0,
|
||||||
behaviourPenaltyWeight: -1.0,
|
behaviourPenaltyWeight: -1.0,
|
||||||
|
@ -621,6 +621,8 @@ proc updateScores(g: GossipSub) = # avoid async
|
||||||
|
|
||||||
for peer, stats in g.peerStats.mpairs:
|
for peer, stats in g.peerStats.mpairs:
|
||||||
trace "updating peer score", peer
|
trace "updating peer score", peer
|
||||||
|
var n_topics = 0
|
||||||
|
var is_grafted = 0
|
||||||
|
|
||||||
if not peer.connected:
|
if not peer.connected:
|
||||||
if now > stats.expire:
|
if now > stats.expire:
|
||||||
|
@ -631,11 +633,13 @@ proc updateScores(g: GossipSub) = # avoid async
|
||||||
# Per topic
|
# Per topic
|
||||||
for topic, topicParams in g.topicParams:
|
for topic, topicParams in g.topicParams:
|
||||||
var info = stats.topicInfos.getOrDefault(topic)
|
var info = stats.topicInfos.getOrDefault(topic)
|
||||||
|
inc n_topics
|
||||||
|
|
||||||
# Scoring
|
# Scoring
|
||||||
var topicScore = 0'f64
|
var topicScore = 0'f64
|
||||||
|
|
||||||
if info.inMesh:
|
if info.inMesh:
|
||||||
|
inc is_grafted
|
||||||
info.meshTime = now - info.graftTime
|
info.meshTime = now - info.graftTime
|
||||||
if info.meshTime > topicParams.meshMessageDeliveriesActivation:
|
if info.meshTime > topicParams.meshMessageDeliveriesActivation:
|
||||||
info.meshMessageDeliveriesActive = true
|
info.meshMessageDeliveriesActive = true
|
||||||
|
@ -701,7 +705,7 @@ proc updateScores(g: GossipSub) = # avoid async
|
||||||
if peer.behaviourPenalty < g.parameters.decayToZero:
|
if peer.behaviourPenalty < g.parameters.decayToZero:
|
||||||
peer.behaviourPenalty = 0
|
peer.behaviourPenalty = 0
|
||||||
|
|
||||||
trace "updated peer's score", peer, score = peer.score
|
debug "updated peer's score", peer, score = peer.score, n_topics, is_grafted
|
||||||
|
|
||||||
for peer in evicting:
|
for peer in evicting:
|
||||||
g.peerStats.del(peer)
|
g.peerStats.del(peer)
|
||||||
|
|
|
@ -258,11 +258,6 @@ proc upgradeIncoming(s: Switch, conn: Connection) {.async, gcsafe.} =
|
||||||
for muxer in s.muxers.values:
|
for muxer in s.muxers.values:
|
||||||
ms.addHandler(muxer.codecs, muxer)
|
ms.addHandler(muxer.codecs, muxer)
|
||||||
|
|
||||||
# add the mounted protocols
|
|
||||||
# notice this should be kept in sync ...
|
|
||||||
for handler in s.ms.handlers:
|
|
||||||
ms.handlers &= handler
|
|
||||||
|
|
||||||
# handle subsequent secure requests
|
# handle subsequent secure requests
|
||||||
await ms.handle(sconn)
|
await ms.handle(sconn)
|
||||||
|
|
||||||
|
|
|
@ -35,10 +35,3 @@ func shortLog*(item: string): string =
|
||||||
result &= item[0..<split]
|
result &= item[0..<split]
|
||||||
result &= "..."
|
result &= "..."
|
||||||
result &= item[(item.len - split)..item.high]
|
result &= item[(item.len - split)..item.high]
|
||||||
|
|
||||||
template withLock*(l: auto, body: untyped): untyped =
|
|
||||||
await l.acquire()
|
|
||||||
try:
|
|
||||||
body
|
|
||||||
finally:
|
|
||||||
l.release()
|
|
Loading…
Reference in New Issue