5be1da982f
* pkg/telemetry: use zeebo/admission * pkg/telemetry: updated to use latest zeebo/admission changes
18 lines
295 B
Go
18 lines
295 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package telemetry
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func jitter(t time.Duration) time.Duration {
|
|
nanos := rand.NormFloat64()*float64(t/4) + float64(t)
|
|
if nanos <= 0 {
|
|
nanos = 1
|
|
}
|
|
return time.Duration(nanos)
|
|
}
|