cmd/syncthing: Fix CPU usage reporting (tick time)

This commit is contained in:
Jakob Borg 2017-05-06 17:35:07 +02:00
parent b17d7d8126
commit ec137c9522
1 changed files with 3 additions and 2 deletions

View File

@ -848,8 +848,9 @@ func (s *apiService) flushResponse(resp string, w http.ResponseWriter) {
}
// 10 second average. Magic alpha value comes from looking at EWMA package
// definitions of EWMA1, EWMA5.
var cpuTickRate = 2 * time.Second
// definitions of EWMA1, EWMA5. The tick rate *must* be five seconds (hard
// coded in the EWMA package).
var cpuTickRate = 5 * time.Second
var cpuAverage = metrics.NewEWMA(1 - math.Exp(-float64(cpuTickRate)/float64(time.Second)/10.0))
func init() {