2019-11-18 20:33:15 +03:00
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
2020-06-25 00:20:22 +03:00
|
|
|
"math"
|
2019-11-18 20:33:15 +03:00
|
|
|
"sync"
|
2020-06-25 00:20:22 +03:00
|
|
|
"sync/atomic"
|
2019-11-18 20:33:15 +03:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Meters count events to produce exponentially-weighted moving average rates
|
|
|
|
// at one-, five-, and fifteen-minutes and a mean rate.
|
|
|
|
type Meter interface {
|
|
|
|
Count() int64
|
|
|
|
Mark(int64)
|
|
|
|
Rate1() float64
|
|
|
|
Rate5() float64
|
|
|
|
Rate15() float64
|
|
|
|
RateMean() float64
|
|
|
|
Snapshot() Meter
|
2020-06-25 00:20:22 +03:00
|
|
|
Stop()
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetOrRegisterMeter returns an existing Meter or constructs and registers a
|
|
|
|
// new StandardMeter.
|
2020-06-25 00:20:22 +03:00
|
|
|
// Be sure to unregister the meter from the registry once it is of no use to
|
|
|
|
// allow for garbage collection.
|
2019-11-18 20:33:15 +03:00
|
|
|
func GetOrRegisterMeter(name string, r Registry) Meter {
|
|
|
|
if nil == r {
|
|
|
|
r = DefaultRegistry
|
|
|
|
}
|
|
|
|
return r.GetOrRegister(name, NewMeter).(Meter)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMeter constructs a new StandardMeter and launches a goroutine.
|
2020-06-25 00:20:22 +03:00
|
|
|
// Be sure to call Stop() once the meter is of no use to allow for garbage collection.
|
2019-11-18 20:33:15 +03:00
|
|
|
func NewMeter() Meter {
|
|
|
|
if UseNilMetrics {
|
|
|
|
return NilMeter{}
|
|
|
|
}
|
|
|
|
m := newStandardMeter()
|
|
|
|
arbiter.Lock()
|
|
|
|
defer arbiter.Unlock()
|
2020-06-25 00:20:22 +03:00
|
|
|
arbiter.meters[m] = struct{}{}
|
2019-11-18 20:33:15 +03:00
|
|
|
if !arbiter.started {
|
|
|
|
arbiter.started = true
|
|
|
|
go arbiter.tick()
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMeter constructs and registers a new StandardMeter and launches a
|
|
|
|
// goroutine.
|
2020-06-25 00:20:22 +03:00
|
|
|
// Be sure to unregister the meter from the registry once it is of no use to
|
|
|
|
// allow for garbage collection.
|
2019-11-18 20:33:15 +03:00
|
|
|
func NewRegisteredMeter(name string, r Registry) Meter {
|
|
|
|
c := NewMeter()
|
|
|
|
if nil == r {
|
|
|
|
r = DefaultRegistry
|
|
|
|
}
|
|
|
|
r.Register(name, c)
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
// MeterSnapshot is a read-only copy of another Meter.
|
|
|
|
type MeterSnapshot struct {
|
|
|
|
count int64
|
2020-06-25 00:20:22 +03:00
|
|
|
rate1, rate5, rate15, rateMean uint64
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Count returns the count of events at the time the snapshot was taken.
|
|
|
|
func (m *MeterSnapshot) Count() int64 { return m.count }
|
|
|
|
|
|
|
|
// Mark panics.
|
|
|
|
func (*MeterSnapshot) Mark(n int64) {
|
|
|
|
panic("Mark called on a MeterSnapshot")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rate1 returns the one-minute moving average rate of events per second at the
|
|
|
|
// time the snapshot was taken.
|
2020-06-25 00:20:22 +03:00
|
|
|
func (m *MeterSnapshot) Rate1() float64 { return math.Float64frombits(m.rate1) }
|
2019-11-18 20:33:15 +03:00
|
|
|
|
|
|
|
// Rate5 returns the five-minute moving average rate of events per second at
|
|
|
|
// the time the snapshot was taken.
|
2020-06-25 00:20:22 +03:00
|
|
|
func (m *MeterSnapshot) Rate5() float64 { return math.Float64frombits(m.rate5) }
|
2019-11-18 20:33:15 +03:00
|
|
|
|
|
|
|
// Rate15 returns the fifteen-minute moving average rate of events per second
|
|
|
|
// at the time the snapshot was taken.
|
2020-06-25 00:20:22 +03:00
|
|
|
func (m *MeterSnapshot) Rate15() float64 { return math.Float64frombits(m.rate15) }
|
2019-11-18 20:33:15 +03:00
|
|
|
|
|
|
|
// RateMean returns the meter's mean rate of events per second at the time the
|
|
|
|
// snapshot was taken.
|
2020-06-25 00:20:22 +03:00
|
|
|
func (m *MeterSnapshot) RateMean() float64 { return math.Float64frombits(m.rateMean) }
|
2019-11-18 20:33:15 +03:00
|
|
|
|
|
|
|
// Snapshot returns the snapshot.
|
|
|
|
func (m *MeterSnapshot) Snapshot() Meter { return m }
|
|
|
|
|
2020-06-25 00:20:22 +03:00
|
|
|
// Stop is a no-op.
|
|
|
|
func (m *MeterSnapshot) Stop() {}
|
|
|
|
|
2019-11-18 20:33:15 +03:00
|
|
|
// NilMeter is a no-op Meter.
|
|
|
|
type NilMeter struct{}
|
|
|
|
|
|
|
|
// Count is a no-op.
|
|
|
|
func (NilMeter) Count() int64 { return 0 }
|
|
|
|
|
|
|
|
// Mark is a no-op.
|
|
|
|
func (NilMeter) Mark(n int64) {}
|
|
|
|
|
|
|
|
// Rate1 is a no-op.
|
|
|
|
func (NilMeter) Rate1() float64 { return 0.0 }
|
|
|
|
|
|
|
|
// Rate5 is a no-op.
|
|
|
|
func (NilMeter) Rate5() float64 { return 0.0 }
|
|
|
|
|
|
|
|
// Rate15is a no-op.
|
|
|
|
func (NilMeter) Rate15() float64 { return 0.0 }
|
|
|
|
|
|
|
|
// RateMean is a no-op.
|
|
|
|
func (NilMeter) RateMean() float64 { return 0.0 }
|
|
|
|
|
|
|
|
// Snapshot is a no-op.
|
|
|
|
func (NilMeter) Snapshot() Meter { return NilMeter{} }
|
|
|
|
|
2020-06-25 00:20:22 +03:00
|
|
|
// Stop is a no-op.
|
|
|
|
func (NilMeter) Stop() {}
|
|
|
|
|
2019-11-18 20:33:15 +03:00
|
|
|
// StandardMeter is the standard implementation of a Meter.
|
|
|
|
type StandardMeter struct {
|
|
|
|
snapshot *MeterSnapshot
|
|
|
|
a1, a5, a15 EWMA
|
|
|
|
startTime time.Time
|
2020-06-25 00:20:22 +03:00
|
|
|
stopped uint32
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func newStandardMeter() *StandardMeter {
|
|
|
|
return &StandardMeter{
|
|
|
|
snapshot: &MeterSnapshot{},
|
|
|
|
a1: NewEWMA1(),
|
|
|
|
a5: NewEWMA5(),
|
|
|
|
a15: NewEWMA15(),
|
|
|
|
startTime: time.Now(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 00:20:22 +03:00
|
|
|
// Stop stops the meter, Mark() will be a no-op if you use it after being stopped.
|
|
|
|
func (m *StandardMeter) Stop() {
|
|
|
|
if atomic.CompareAndSwapUint32(&m.stopped, 0, 1) {
|
|
|
|
arbiter.Lock()
|
|
|
|
delete(arbiter.meters, m)
|
|
|
|
arbiter.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-18 20:33:15 +03:00
|
|
|
// Count returns the number of events recorded.
|
|
|
|
func (m *StandardMeter) Count() int64 {
|
2020-06-25 00:20:22 +03:00
|
|
|
return atomic.LoadInt64(&m.snapshot.count)
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mark records the occurance of n events.
|
|
|
|
func (m *StandardMeter) Mark(n int64) {
|
2020-06-25 00:20:22 +03:00
|
|
|
if atomic.LoadUint32(&m.stopped) == 1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
atomic.AddInt64(&m.snapshot.count, n)
|
|
|
|
|
2019-11-18 20:33:15 +03:00
|
|
|
m.a1.Update(n)
|
|
|
|
m.a5.Update(n)
|
|
|
|
m.a15.Update(n)
|
|
|
|
m.updateSnapshot()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rate1 returns the one-minute moving average rate of events per second.
|
|
|
|
func (m *StandardMeter) Rate1() float64 {
|
2020-06-25 00:20:22 +03:00
|
|
|
return math.Float64frombits(atomic.LoadUint64(&m.snapshot.rate1))
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rate5 returns the five-minute moving average rate of events per second.
|
|
|
|
func (m *StandardMeter) Rate5() float64 {
|
2020-06-25 00:20:22 +03:00
|
|
|
return math.Float64frombits(atomic.LoadUint64(&m.snapshot.rate5))
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rate15 returns the fifteen-minute moving average rate of events per second.
|
|
|
|
func (m *StandardMeter) Rate15() float64 {
|
2020-06-25 00:20:22 +03:00
|
|
|
return math.Float64frombits(atomic.LoadUint64(&m.snapshot.rate15))
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// RateMean returns the meter's mean rate of events per second.
|
|
|
|
func (m *StandardMeter) RateMean() float64 {
|
2020-06-25 00:20:22 +03:00
|
|
|
return math.Float64frombits(atomic.LoadUint64(&m.snapshot.rateMean))
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Snapshot returns a read-only copy of the meter.
|
|
|
|
func (m *StandardMeter) Snapshot() Meter {
|
2020-06-25 00:20:22 +03:00
|
|
|
copiedSnapshot := MeterSnapshot{
|
|
|
|
count: atomic.LoadInt64(&m.snapshot.count),
|
|
|
|
rate1: atomic.LoadUint64(&m.snapshot.rate1),
|
|
|
|
rate5: atomic.LoadUint64(&m.snapshot.rate5),
|
|
|
|
rate15: atomic.LoadUint64(&m.snapshot.rate15),
|
|
|
|
rateMean: atomic.LoadUint64(&m.snapshot.rateMean),
|
|
|
|
}
|
|
|
|
return &copiedSnapshot
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StandardMeter) updateSnapshot() {
|
2020-06-25 00:20:22 +03:00
|
|
|
rate1 := math.Float64bits(m.a1.Rate())
|
|
|
|
rate5 := math.Float64bits(m.a5.Rate())
|
|
|
|
rate15 := math.Float64bits(m.a15.Rate())
|
|
|
|
rateMean := math.Float64bits(float64(m.Count()) / time.Since(m.startTime).Seconds())
|
|
|
|
|
|
|
|
atomic.StoreUint64(&m.snapshot.rate1, rate1)
|
|
|
|
atomic.StoreUint64(&m.snapshot.rate5, rate5)
|
|
|
|
atomic.StoreUint64(&m.snapshot.rate15, rate15)
|
|
|
|
atomic.StoreUint64(&m.snapshot.rateMean, rateMean)
|
2019-11-18 20:33:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StandardMeter) tick() {
|
|
|
|
m.a1.Tick()
|
|
|
|
m.a5.Tick()
|
|
|
|
m.a15.Tick()
|
|
|
|
m.updateSnapshot()
|
|
|
|
}
|
|
|
|
|
2020-06-25 00:20:22 +03:00
|
|
|
// meterArbiter ticks meters every 5s from a single goroutine.
|
|
|
|
// meters are references in a set for future stopping.
|
2019-11-18 20:33:15 +03:00
|
|
|
type meterArbiter struct {
|
|
|
|
sync.RWMutex
|
|
|
|
started bool
|
2020-06-25 00:20:22 +03:00
|
|
|
meters map[*StandardMeter]struct{}
|
2019-11-18 20:33:15 +03:00
|
|
|
ticker *time.Ticker
|
|
|
|
}
|
|
|
|
|
2020-06-25 00:20:22 +03:00
|
|
|
var arbiter = meterArbiter{ticker: time.NewTicker(5e9), meters: make(map[*StandardMeter]struct{})}
|
2019-11-18 20:33:15 +03:00
|
|
|
|
|
|
|
// Ticks meters on the scheduled interval
|
|
|
|
func (ma *meterArbiter) tick() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ma.ticker.C:
|
|
|
|
ma.tickMeters()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ma *meterArbiter) tickMeters() {
|
|
|
|
ma.RLock()
|
|
|
|
defer ma.RUnlock()
|
2020-06-25 00:20:22 +03:00
|
|
|
for meter := range ma.meters {
|
2019-11-18 20:33:15 +03:00
|
|
|
meter.tick()
|
|
|
|
}
|
|
|
|
}
|