-
Notifications
You must be signed in to change notification settings - Fork 316
/
stats.go
231 lines (174 loc) · 4.54 KB
/
stats.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package memstats
import (
"context"
"sync"
"time"
"github.com/rudderlabs/rudder-server/services/stats"
)
var _ stats.Stats = (*Store)(nil)
var _ stats.Measurement = (*Measurement)(nil)
type Store struct {
mu sync.Mutex
byKey map[string]*Measurement
now func() time.Time
}
type Measurement struct {
mu sync.Mutex
startTime time.Time
now func() time.Time
tags stats.Tags
name string
mType string
sum float64
values []float64
durations []time.Duration
}
func (m *Measurement) LastValue() float64 {
m.mu.Lock()
defer m.mu.Unlock()
if len(m.values) == 0 {
return 0
}
return m.values[len(m.values)-1]
}
func (m *Measurement) Values() []float64 {
m.mu.Lock()
defer m.mu.Unlock()
s := make([]float64, len(m.values))
copy(s, m.values)
return s
}
func (m *Measurement) LastDuration() time.Duration {
m.mu.Lock()
defer m.mu.Unlock()
if len(m.durations) == 0 {
return 0
}
return m.durations[len(m.durations)-1]
}
func (m *Measurement) Durations() []time.Duration {
m.mu.Lock()
defer m.mu.Unlock()
s := make([]time.Duration, len(m.durations))
copy(s, m.durations)
return s
}
// Count implements stats.Measurement
func (m *Measurement) Count(n int) {
m.mu.Lock()
defer m.mu.Unlock()
if m.mType != stats.CountType {
panic("operation Count not supported for measurement type:" + m.mType)
}
m.sum += float64(n)
m.values = append(m.values, m.sum)
}
// Increment implements stats.Measurement
func (m *Measurement) Increment() {
if m.mType != stats.CountType {
panic("operation Increment not supported for measurement type:" + m.mType)
}
m.Count(1)
}
// Gauge implements stats.Measurement
func (m *Measurement) Gauge(value interface{}) {
if m.mType != stats.GaugeType {
panic("operation Gauge not supported for measurement type:" + m.mType)
}
m.mu.Lock()
defer m.mu.Unlock()
m.values = append(m.values, value.(float64))
}
// Observe implements stats.Measurement
func (m *Measurement) Observe(value float64) {
if m.mType != stats.HistogramType {
panic("operation Observe not supported for measurement type:" + m.mType)
}
m.mu.Lock()
defer m.mu.Unlock()
m.values = append(m.values, value)
}
// Start implements stats.Measurement
func (m *Measurement) Start() {
if m.mType != stats.TimerType {
panic("operation Start not supported for measurement type:" + m.mType)
}
m.mu.Lock()
defer m.mu.Unlock()
m.startTime = m.now()
}
// End implements stats.Measurement
func (m *Measurement) End() {
if m.mType != stats.TimerType {
panic("operation End not supported for measurement type:" + m.mType)
}
m.SendTiming(m.now().Sub(m.startTime))
}
// Since implements stats.Measurement
func (m *Measurement) Since(start time.Time) {
if m.mType != stats.TimerType {
panic("operation Since not supported for measurement type:" + m.mType)
}
m.SendTiming(m.now().Sub(start))
}
// SendTiming implements stats.Measurement
func (m *Measurement) SendTiming(duration time.Duration) {
if m.mType != stats.TimerType {
panic("operation SendTiming not supported for measurement type:" + m.mType)
}
m.mu.Lock()
defer m.mu.Unlock()
m.durations = append(m.durations, duration)
}
type Opts func(*Store)
func WithNow(nowFn func() time.Time) Opts {
return func(s *Store) {
s.now = nowFn
}
}
func New(opts ...Opts) *Store {
s := &Store{
byKey: make(map[string]*Measurement),
now: time.Now,
}
for _, opt := range opts {
opt(s)
}
return s
}
// NewStat implements stats.Stats
func (ms *Store) NewStat(name, statType string) (m stats.Measurement) {
return ms.NewTaggedStat(name, statType, nil)
}
// NewTaggedStat implements stats.Stats
func (ms *Store) NewTaggedStat(name, statType string, tags stats.Tags) stats.Measurement {
return ms.NewSampledTaggedStat(name, statType, tags)
}
// NewSampledTaggedStat implements stats.Stats
func (ms *Store) NewSampledTaggedStat(name, statType string, tags stats.Tags) stats.Measurement {
ms.mu.Lock()
defer ms.mu.Unlock()
m := &Measurement{
name: name,
tags: tags,
mType: statType,
now: ms.now,
}
ms.byKey[ms.getKey(name, tags)] = m
return m
}
// Get the stored measurement with the name and tags.
// If no measurement is found, nil is returned.
func (ms *Store) Get(name string, tags stats.Tags) *Measurement {
ms.mu.Lock()
defer ms.mu.Unlock()
return ms.byKey[ms.getKey(name, tags)]
}
// Start implements stats.Stats
func (*Store) Start(_ context.Context) {}
// Stop implements stats.Stats
func (*Store) Stop() {}
// getKey maps name and tags, to a store lookup key.
func (*Store) getKey(name string, tags stats.Tags) string {
return name + tags.String()
}