2018-07-04 10:51:47 +00:00
|
|
|
package peerstore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2019-10-04 15:21:24 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2018-07-04 10:51:47 +00:00
|
|
|
)
|
|
|
|
|
2022-04-01 16:16:46 +00:00
|
|
|
// LatencyEWMASmoothing governs the decay of the EWMA (the speed
|
2018-07-04 10:51:47 +00:00
|
|
|
// at which it changes). This must be a normalized (0-1) value.
|
|
|
|
// 1 is 100% change, 0 is no change.
|
|
|
|
var LatencyEWMASmoothing = 0.1
|
|
|
|
|
|
|
|
type metrics struct {
|
2022-04-01 16:16:46 +00:00
|
|
|
mutex sync.RWMutex
|
2018-07-04 10:51:47 +00:00
|
|
|
latmap map[peer.ID]time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMetrics() *metrics {
|
|
|
|
return &metrics{
|
|
|
|
latmap: make(map[peer.ID]time.Duration),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RecordLatency records a new latency measurement
|
|
|
|
func (m *metrics) RecordLatency(p peer.ID, next time.Duration) {
|
|
|
|
nextf := float64(next)
|
|
|
|
s := LatencyEWMASmoothing
|
|
|
|
if s > 1 || s < 0 {
|
|
|
|
s = 0.1 // ignore the knob. it's broken. look, it jiggles.
|
|
|
|
}
|
|
|
|
|
2022-04-01 16:16:46 +00:00
|
|
|
m.mutex.Lock()
|
2018-07-04 10:51:47 +00:00
|
|
|
ewma, found := m.latmap[p]
|
|
|
|
ewmaf := float64(ewma)
|
|
|
|
if !found {
|
|
|
|
m.latmap[p] = next // when no data, just take it as the mean.
|
|
|
|
} else {
|
|
|
|
nextf = ((1.0 - s) * ewmaf) + (s * nextf)
|
|
|
|
m.latmap[p] = time.Duration(nextf)
|
|
|
|
}
|
2022-04-01 16:16:46 +00:00
|
|
|
m.mutex.Unlock()
|
2018-07-04 10:51:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LatencyEWMA returns an exponentially-weighted moving avg.
|
|
|
|
// of all measurements of a peer's latency.
|
|
|
|
func (m *metrics) LatencyEWMA(p peer.ID) time.Duration {
|
2022-04-01 16:16:46 +00:00
|
|
|
m.mutex.RLock()
|
|
|
|
defer m.mutex.RUnlock()
|
|
|
|
return m.latmap[p]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *metrics) RemovePeer(p peer.ID) {
|
|
|
|
m.mutex.Lock()
|
|
|
|
delete(m.latmap, p)
|
|
|
|
m.mutex.Unlock()
|
2018-07-04 10:51:47 +00:00
|
|
|
}
|