Back to VividCortex/ewma

This commit is contained in:
Frank Denis 2022-04-05 14:04:26 +02:00
parent 77dc3b1e85
commit 5fca7ea49e
14 changed files with 300 additions and 97 deletions

View file

@ -3,23 +3,19 @@ package main
import (
"sync"
"github.com/lifenjoiner/ewma"
)
const (
SizeEstimatorEwmaDecay = 100.0
"github.com/VividCortex/ewma"
)
type QuestionSizeEstimator struct {
sync.RWMutex
minQuestionSize int
ewma *ewma.EWMA
ewma ewma.MovingAverage
}
func NewQuestionSizeEstimator() QuestionSizeEstimator {
return QuestionSizeEstimator{
minQuestionSize: InitialMinQuestionSize,
ewma: ewma.NewMovingAverage(SizeEstimatorEwmaDecay),
ewma: &ewma.SimpleEWMA{},
}
}

View file

@ -15,10 +15,10 @@ import (
"sync"
"time"
"github.com/VividCortex/ewma"
"github.com/jedisct1/dlog"
clocksmith "github.com/jedisct1/go-clocksmith"
stamps "github.com/jedisct1/go-dnsstamps"
"github.com/lifenjoiner/ewma"
"github.com/miekg/dns"
"golang.org/x/crypto/ed25519"
)
@ -46,7 +46,7 @@ type DOHClientCreds struct {
type ServerInfo struct {
DOHClientCreds DOHClientCreds
lastActionTS time.Time
rtt *ewma.EWMA
rtt ewma.MovingAverage
Name string
HostName string
UDPAddr *net.UDPAddr