- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for getExpMovingAvgBytesPerSecond (0.15 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/bucket/bandwidth/measurement.go
func exponentialMovingAverage(beta, previousAvg, incrementAvg float64) float64 { return (1-beta)*incrementAvg + beta*previousAvg } // getExpMovingAvgBytesPerSecond returns the exponential moving average for the bucket in bytes func (m *bucketMeasurement) getExpMovingAvgBytesPerSecond() float64 { m.lock.Lock() defer m.lock.Unlock() return m.expMovingAvg
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sat Jun 03 20:41:51 GMT 2023 - 2.9K bytes - Click Count (0)