-
Notifications
You must be signed in to change notification settings - Fork 140
/
report.go
293 lines (257 loc) · 5.65 KB
/
report.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
package main
import (
"math"
"sync"
"time"
"github.com/beorn7/perks/histogram"
"github.com/beorn7/perks/quantile"
)
var quantiles = []float64{0.50, 0.75, 0.90, 0.95, 0.99, 0.999, 0.9999}
var quantilesTarget = map[float64]float64{
0.50: 0.01,
0.75: 0.01,
0.90: 0.001,
0.95: 0.001,
0.99: 0.001,
0.999: 0.0001,
0.9999: 0.00001,
}
var httpStatusSectionLabelMap = map[int]string{
1: "1xx",
2: "2xx",
3: "3xx",
4: "4xx",
5: "5xx",
}
type Stats struct {
count int64
sum float64
sumSq float64
min float64
max float64
}
func (s *Stats) Update(v float64) {
s.count++
s.sum += v
s.sumSq += v * v
if v < s.min || s.count == 1 {
s.min = v
}
if v > s.max || s.count == 1 {
s.max = v
}
}
func (s *Stats) Stddev() float64 {
num := (float64(s.count) * s.sumSq) - math.Pow(s.sum, 2)
div := float64(s.count * (s.count - 1))
if div == 0 {
return 0
}
return math.Sqrt(num / div)
}
func (s *Stats) Mean() float64 {
if s.count == 0 {
return 0
}
return s.sum / float64(s.count)
}
func (s *Stats) Reset() {
s.count = 0
s.sum = 0
s.sumSq = 0
s.min = 0
s.max = 0
}
type StreamReport struct {
lock sync.Mutex
latencyStats *Stats
rpsStats *Stats
latencyQuantile *quantile.Stream
latencyHistogram *histogram.Histogram
codes map[int]int64
errors map[string]int64
latencyWithinSec *Stats
rpsWithinSec float64
noDateWithinSec bool
readBytes int64
writeBytes int64
doneChan chan struct{}
}
func NewStreamReport() *StreamReport {
return &StreamReport{
latencyQuantile: quantile.NewTargeted(quantilesTarget),
latencyHistogram: histogram.New(8),
codes: make(map[int]int64, 1),
errors: make(map[string]int64, 1),
doneChan: make(chan struct{}, 1),
latencyStats: &Stats{},
rpsStats: &Stats{},
latencyWithinSec: &Stats{},
}
}
func (s *StreamReport) insert(v float64) {
s.latencyQuantile.Insert(v)
s.latencyHistogram.Insert(v)
s.latencyStats.Update(v)
}
func (s *StreamReport) Collect(records <-chan *ReportRecord) {
latencyWithinSecTemp := &Stats{}
go func() {
ticker := time.NewTicker(time.Second)
lastCount := int64(0)
lastTime := startTime
for {
select {
case <-ticker.C:
s.lock.Lock()
dc := s.latencyStats.count - lastCount
if dc > 0 {
rps := float64(dc) / time.Since(lastTime).Seconds()
s.rpsStats.Update(rps)
lastCount = s.latencyStats.count
lastTime = time.Now()
*s.latencyWithinSec = *latencyWithinSecTemp
s.rpsWithinSec = rps
latencyWithinSecTemp.Reset()
s.noDateWithinSec = false
} else {
s.noDateWithinSec = true
}
s.lock.Unlock()
case <-s.doneChan:
return
}
}
}()
for {
r, ok := <-records
if !ok {
close(s.doneChan)
break
}
s.lock.Lock()
latencyWithinSecTemp.Update(float64(r.cost))
s.insert(float64(r.cost))
if r.code != 0 {
s.codes[r.code]++
}
if r.error != "" {
s.errors[r.error]++
}
s.readBytes = r.readBytes
s.writeBytes = r.writeBytes
s.lock.Unlock()
recordPool.Put(r)
}
}
type SnapshotReport struct {
Elapsed time.Duration
Count int64
Codes map[string]int64
Errors map[string]int64
RPS float64
ReadThroughput float64
WriteThroughput float64
Stats *struct {
Min time.Duration
Mean time.Duration
StdDev time.Duration
Max time.Duration
}
RpsStats *struct {
Min float64
Mean float64
StdDev float64
Max float64
}
Percentiles []*struct {
Percentile float64
Latency time.Duration
}
Histograms []*struct {
Mean time.Duration
Count int
}
}
func (s *StreamReport) Snapshot() *SnapshotReport {
s.lock.Lock()
rs := &SnapshotReport{
Elapsed: time.Since(startTime),
Count: s.latencyStats.count,
Stats: &struct {
Min time.Duration
Mean time.Duration
StdDev time.Duration
Max time.Duration
}{time.Duration(s.latencyStats.min), time.Duration(s.latencyStats.Mean()),
time.Duration(s.latencyStats.Stddev()), time.Duration(s.latencyStats.max)},
}
if s.rpsStats.count > 0 {
rs.RpsStats = &struct {
Min float64
Mean float64
StdDev float64
Max float64
}{s.rpsStats.min, s.rpsStats.Mean(),
s.rpsStats.Stddev(), s.rpsStats.max}
}
elapseInSec := rs.Elapsed.Seconds()
rs.RPS = float64(rs.Count) / elapseInSec
rs.ReadThroughput = float64(s.readBytes) / 1024.0 / 1024.0 / elapseInSec
rs.WriteThroughput = float64(s.writeBytes) / 1024.0 / 1024.0 / elapseInSec
rs.Codes = make(map[string]int64, len(s.codes))
for k, v := range s.codes {
section := k / 100
rs.Codes[httpStatusSectionLabelMap[section]] = v
}
rs.Errors = make(map[string]int64, len(s.errors))
for k, v := range s.errors {
rs.Errors[k] = v
}
rs.Percentiles = make([]*struct {
Percentile float64
Latency time.Duration
}, len(quantiles))
for i, p := range quantiles {
rs.Percentiles[i] = &struct {
Percentile float64
Latency time.Duration
}{p, time.Duration(s.latencyQuantile.Query(p))}
}
hisBins := s.latencyHistogram.Bins()
rs.Histograms = make([]*struct {
Mean time.Duration
Count int
}, len(hisBins))
for i, b := range hisBins {
rs.Histograms[i] = &struct {
Mean time.Duration
Count int
}{time.Duration(b.Mean()), b.Count}
}
s.lock.Unlock()
return rs
}
func (s *StreamReport) Done() <-chan struct{} {
return s.doneChan
}
type ChartsReport struct {
RPS float64
Latency Stats
CodeMap map[int]int64
}
func (s *StreamReport) Charts() *ChartsReport {
s.lock.Lock()
var cr *ChartsReport
if s.noDateWithinSec {
cr = nil
} else {
cr = &ChartsReport{
RPS: s.rpsWithinSec,
Latency: *s.latencyWithinSec,
CodeMap: s.codes,
}
}
s.lock.Unlock()
return cr
}