| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- package metrics
- import "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
- }
- // GetOrRegisterMeter returns an existing Meter or constructs and registers a
- // new StandardMeter.
- 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.
- func NewMeter() Meter {
- if UseNilMetrics {
- return NilMeter{}
- }
- m := &StandardMeter{
- make(chan int64),
- make(chan *MeterSnapshot),
- time.NewTicker(5e9),
- }
- go m.arbiter()
- return m
- }
- // NewMeter constructs and registers a new StandardMeter and launches a
- // goroutine.
- func NewRegisteredMeter(name string, r Registry) Meter {
- c := NewMeter()
- if nil == r {
- r = DefaultRegistry
- }
- r.Register(name, c)
- return c
- }
- // 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 }
- // The standard implementation of a Meter uses a goroutine to synchronize
- // its calculations and another goroutine (via time.Ticker) to produce
- // clock ticks.
- type StandardMeter struct {
- in chan int64
- out chan meterV
- ticker *time.Ticker
- }
- // Count returns the number of events recorded.
- func (m *StandardMeter) Count() int64 {
- return (<-m.out).count
- }
- // Mark records the occurance of n events.
- func (m *StandardMeter) Mark(n int64) {
- m.in <- n
- }
- // Rate1 returns the one-minute moving average rate of events per second.
- func (m *StandardMeter) Rate1() float64 {
- return (<-m.out).rate1
- }
- // Rate5 returns the five-minute moving average rate of events per second.
- func (m *StandardMeter) Rate5() float64 {
- return (<-m.out).rate5
- }
- // Rate15 returns the fifteen-minute moving average rate of events per second.
- func (m *StandardMeter) Rate15() float64 {
- return (<-m.out).rate15
- }
- // RateMean returns the meter's mean rate of events per second.
- func (m *StandardMeter) RateMean() float64 {
- return (<-m.out).rateMean
- }
- // Receive inputs and send outputs. Count each input and update the various
- // moving averages and the mean rate of events. Send a copy of the meterV
- // as output.
- func (m *StandardMeter) arbiter() {
- var mv meterV
- a1 := NewEWMA1()
- a5 := NewEWMA5()
- a15 := NewEWMA15()
- t := time.Now()
- for {
- select {
- case n := <-m.in:
- mv.count += n
- a1.Update(n)
- a5.Update(n)
- a15.Update(n)
- mv.rate1 = a1.Rate()
- mv.rate5 = a5.Rate()
- mv.rate15 = a15.Rate()
- mv.rateMean = float64(1e9*mv.count) / float64(time.Since(t))
- case m.out <- mv:
- case <-m.ticker.C:
- a1.Tick()
- a5.Tick()
- a15.Tick()
- mv.rate1 = a1.Rate()
- mv.rate5 = a5.Rate()
- mv.rate15 = a15.Rate()
- mv.rateMean = float64(1e9*mv.count) / float64(time.Since(t))
- }
- }
- }
- // A meterV contains all the values that would need to be passed back
- // from the synchronizing goroutine.
- type meterV struct {
- count int64
- rate1, rate5, rate15, rateMean float64
- }
|