-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathresetting_histogram.go
336 lines (261 loc) · 7.36 KB
/
resetting_histogram.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
package runtime
import (
"math"
"sort"
"sync"
"github.com/rcrowley/go-metrics"
)
// Initial slice capacity for the values stored in a ResettingHistogram
const InitialResettingHistogramSliceCap = 10
// newResettingHistogram constructs a new StandardResettingHistogram
func newResettingHistogram() Histogram {
if metrics.UseNilMetrics {
return nilResettingHistogram{}
}
return &standardResettingHistogram{
values: make([]int64, 0, InitialResettingHistogramSliceCap),
}
}
// nilResettingHistogram is a no-op ResettingHistogram.
type nilResettingHistogram struct {
}
// Values is a no-op.
func (nilResettingHistogram) Values() []int64 { return nil }
// Snapshot is a no-op.
func (nilResettingHistogram) Snapshot() Histogram {
return &resettingHistogramSnapshot{
values: []int64{},
}
}
// Update is a no-op.
func (nilResettingHistogram) Update(int64) {}
// Clear is a no-op.
func (nilResettingHistogram) Clear() {}
func (nilResettingHistogram) Count() int64 {
return 0
}
func (nilResettingHistogram) Variance() float64 {
return 0.0
}
func (nilResettingHistogram) Min() int64 {
return 0
}
func (nilResettingHistogram) Max() int64 {
return 0
}
func (nilResettingHistogram) Sum() int64 {
return 0
}
func (nilResettingHistogram) StdDev() float64 {
return 0.0
}
func (nilResettingHistogram) Sample() Sample {
return metrics.NilSample{}
}
func (nilResettingHistogram) Percentiles([]float64) []float64 {
return nil
}
func (nilResettingHistogram) Percentile(float64) float64 {
return 0.0
}
func (nilResettingHistogram) Mean() float64 {
return 0.0
}
// standardResettingHistogram is used for storing aggregated values for timers, which are reset on every flush interval.
type standardResettingHistogram struct {
values []int64
mutex sync.Mutex
}
func (t *standardResettingHistogram) Count() int64 {
panic("Count called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Max() int64 {
panic("Max called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Min() int64 {
panic("Min called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) StdDev() float64 {
panic("StdDev called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Variance() float64 {
panic("Variance called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Sum() int64 {
panic("Sum called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Sample() Sample {
panic("Sample called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Percentiles([]float64) []float64 {
panic("Percentiles called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Percentile(float64) float64 {
panic("Percentile called on a resetting histogram; capture a snapshot first")
}
func (t *standardResettingHistogram) Mean() float64 {
panic("Mean called on a resetting histogram; capture a snapshot first")
}
// Values returns a slice with all measurements.
func (t *standardResettingHistogram) Values() []int64 {
return t.values
}
// Snapshot resets the timer and returns a read-only copy of its sorted contents.
func (t *standardResettingHistogram) Snapshot() Histogram {
t.mutex.Lock()
defer t.mutex.Unlock()
currentValues := t.values
t.values = make([]int64, 0, InitialResettingHistogramSliceCap)
sort.Slice(currentValues, func(i, j int) bool { return currentValues[i] < currentValues[j] })
return &resettingHistogramSnapshot{
values: currentValues,
}
}
func (t *standardResettingHistogram) Clear() {
t.mutex.Lock()
defer t.mutex.Unlock()
t.values = t.values[:0]
}
// Record the duration of an event.
func (t *standardResettingHistogram) Update(d int64) {
t.mutex.Lock()
defer t.mutex.Unlock()
t.values = append(t.values, d)
}
// resettingHistogramSnapshot is a point-in-time copy of another resettingHistogram.
type resettingHistogramSnapshot struct {
sync.Mutex
values []int64
mean float64
calculated bool
}
// resettingHistogramSnapshot returns the snapshot.
func (t *resettingHistogramSnapshot) Snapshot() Histogram { return t }
func (*resettingHistogramSnapshot) Update(int64) {
panic("Update called on a resetting histogram snapshot")
}
func (t *resettingHistogramSnapshot) Clear() {
panic("Clear called on a resetting histogram snapshot")
}
func (t *resettingHistogramSnapshot) Sample() Sample {
panic("Sample called on a resetting histogram snapshot")
}
func (t *resettingHistogramSnapshot) Count() int64 {
t.Lock()
defer t.Unlock()
return int64(len(t.values))
}
// Values returns all values from snapshot.
func (t *resettingHistogramSnapshot) Values() []int64 {
t.Lock()
defer t.Unlock()
return t.values
}
func (t *resettingHistogramSnapshot) Min() int64 {
t.Lock()
defer t.Unlock()
if len(t.values) > 0 {
return t.values[0]
}
return 0
}
func (t *resettingHistogramSnapshot) Variance() float64 {
t.Lock()
defer t.Unlock()
if len(t.values) == 0 {
return 0.0
}
m := t._mean()
var sum float64
for _, v := range t.values {
d := float64(v) - m
sum += d * d
}
return sum / float64(len(t.values))
}
func (t *resettingHistogramSnapshot) Max() int64 {
t.Lock()
defer t.Unlock()
if len(t.values) > 0 {
return t.values[len(t.values)-1]
}
return 0
}
func (t *resettingHistogramSnapshot) StdDev() float64 {
return math.Sqrt(t.Variance())
}
func (t *resettingHistogramSnapshot) Sum() int64 {
t.Lock()
defer t.Unlock()
var sum int64
for _, v := range t.values {
sum += v
}
return sum
}
// Percentile returns the boundaries for the input percentiles.
func (t *resettingHistogramSnapshot) Percentile(percentile float64) float64 {
t.Lock()
defer t.Unlock()
tb := t.calc([]float64{percentile})
return tb[0]
}
// Percentiles returns the boundaries for the input percentiles.
func (t *resettingHistogramSnapshot) Percentiles(percentiles []float64) []float64 {
t.Lock()
defer t.Unlock()
tb := t.calc(percentiles)
return tb
}
// Mean returns the mean of the snapshotted values
func (t *resettingHistogramSnapshot) Mean() float64 {
t.Lock()
defer t.Unlock()
return t._mean()
}
func (t *resettingHistogramSnapshot) _mean() float64 {
if !t.calculated {
_ = t.calc([]float64{})
}
return t.mean
}
func (t *resettingHistogramSnapshot) calc(percentiles []float64) (thresholdBoundaries []float64) {
count := len(t.values)
if count == 0 {
thresholdBoundaries = make([]float64, len(percentiles))
t.mean = 0
t.calculated = true
return
}
min := t.values[0]
max := t.values[count-1]
cumulativeValues := make([]int64, count)
cumulativeValues[0] = min
for i := 1; i < count; i++ {
cumulativeValues[i] = t.values[i] + cumulativeValues[i-1]
}
thresholdBoundaries = make([]float64, len(percentiles))
thresholdBoundary := max
for i, pct := range percentiles {
if count > 1 {
var abs float64
if pct >= 0 {
abs = pct
} else {
abs = 100 + pct
}
// poor man's math.Round(x):
// math.Floor(x + 0.5)
indexOfPerc := int(math.Floor(((abs / 100.0) * float64(count)) + 0.5))
if pct >= 0 && indexOfPerc > 0 {
indexOfPerc -= 1 // index offset=0
}
thresholdBoundary = t.values[indexOfPerc]
}
thresholdBoundaries[i] = float64(thresholdBoundary)
}
sum := cumulativeValues[count-1]
t.mean = float64(sum) / float64(count)
t.calculated = true
return
}