-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmetrics.go
229 lines (192 loc) · 4.8 KB
/
metrics.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
package goHystrix
import (
"github.com/dahernan/goHystrix/sample"
"time"
)
const (
alpha = 0.015 // alpha for the exponential decay distribution
)
type Metric struct {
name string
group string
successChan chan time.Duration
failuresChan chan struct{}
fallbackChan chan struct{}
fallbackErrorChan chan struct{}
timeoutsChan chan struct{}
panicChan chan struct{}
countersChan chan struct{}
countersOutChan chan HealthCounts
buckets int
window time.Duration
values []HealthCountsBucket
sample sample.Sample
lastFailure time.Time
lastSuccess time.Time
lastTimeout time.Time
}
func NewMetric(group string, name string) *Metric {
return NewMetricWithParams(group, name, 20, 50)
}
func NewMetricWithParams(group string, name string, numberOfSecondsToStore int, sampleSize int) *Metric {
m := &Metric{}
m.name = name
m.group = group
m.buckets = numberOfSecondsToStore
m.window = time.Duration(numberOfSecondsToStore) * time.Second
m.values = make([]HealthCountsBucket, m.buckets, m.buckets)
m.sample = sample.NewExpDecaySample(sampleSize, alpha)
m.successChan = make(chan time.Duration)
m.failuresChan = make(chan struct{})
m.fallbackChan = make(chan struct{})
m.fallbackErrorChan = make(chan struct{})
m.timeoutsChan = make(chan struct{})
m.panicChan = make(chan struct{})
m.countersChan = make(chan struct{})
m.countersOutChan = make(chan HealthCounts)
go m.run()
return m
}
type HealthCountsBucket struct {
Failures int64
Success int64
Fallback int64
FallbackErrors int64
Timeouts int64
Panics int64
lastWrite time.Time
}
type HealthCounts struct {
HealthCountsBucket
Total int64
ErrorPercentage float64
}
func (c *HealthCountsBucket) Reset() {
c.Failures = 0
c.Success = 0
c.Fallback = 0
c.FallbackErrors = 0
c.Timeouts = 0
c.Panics = 0
}
func (m *Metric) run() {
for {
select {
case duration := <-m.successChan:
m.doSuccess(duration)
case <-m.failuresChan:
m.doFail()
case <-m.timeoutsChan:
m.doTimeout()
case <-m.fallbackChan:
m.doFallback()
case <-m.fallbackErrorChan:
m.doFallbackError()
case <-m.panicChan:
m.doPanic()
case <-m.countersChan:
m.countersOutChan <- m.doHealthCounts()
//case <-time.After(2 * time.Second):
// fmt.Println("NOTHING :(")
}
}
}
func (m *Metric) bucket() *HealthCountsBucket {
now := time.Now()
index := now.Second() % m.buckets
if !m.values[index].lastWrite.IsZero() {
elapsed := now.Sub(m.values[index].lastWrite)
if elapsed > m.window {
m.values[index].Reset()
}
}
m.values[index].lastWrite = now
return &m.values[index]
}
func (m *Metric) doSuccess(duration time.Duration) {
m.bucket().Success++
m.lastSuccess = time.Now()
go func(d time.Duration) {
m.sample.Update(int64(d))
}(duration)
Exporter().Success(m.group, m.name, duration)
}
func (m *Metric) doFail() {
m.bucket().Failures++
m.lastFailure = time.Now()
Exporter().Fail(m.group, m.name)
}
func (m *Metric) doFallback() {
m.bucket().Fallback++
Exporter().Fallback(m.group, m.name)
}
func (m *Metric) doTimeout() {
m.bucket().Timeouts++
m.bucket().Failures++
now := time.Now()
m.lastFailure = now
m.lastTimeout = now
Exporter().Timeout(m.group, m.name)
}
func (m *Metric) doFallbackError() {
m.bucket().FallbackErrors++
Exporter().FallbackError(m.group, m.name)
}
func (m *Metric) doPanic() {
m.bucket().Panics++
Exporter().Panic(m.group, m.name)
}
func (m *Metric) doHealthCounts() (counters HealthCounts) {
now := time.Now()
for _, value := range m.values {
if !value.lastWrite.IsZero() && (now.Sub(value.lastWrite) <= m.window) {
counters.Success += value.Success
counters.Failures += value.Failures
counters.Fallback += value.Fallback
counters.FallbackErrors += value.FallbackErrors
counters.Timeouts += value.Timeouts
counters.Panics += value.Panics
}
}
counters.Total = counters.Success + counters.Failures
if counters.Total == 0 {
counters.ErrorPercentage = 0
} else {
counters.ErrorPercentage = float64(counters.Failures) / float64(counters.Total) * 100.0
}
return
}
func (m *Metric) HealthCounts() HealthCounts {
m.countersChan <- struct{}{}
return <-m.countersOutChan
}
func (m *Metric) Success(duration time.Duration) {
m.successChan <- duration
}
func (m *Metric) Fail() {
m.failuresChan <- struct{}{}
}
func (m *Metric) Fallback() {
m.fallbackChan <- struct{}{}
}
func (m *Metric) FallbackError() {
m.fallbackErrorChan <- struct{}{}
}
func (m *Metric) Timeout() {
m.timeoutsChan <- struct{}{}
}
func (m *Metric) Panic() {
m.panicChan <- struct{}{}
}
func (m *Metric) Stats() sample.Sample {
return m.sample
}
func (m *Metric) LastFailure() time.Time {
return m.lastFailure
}
func (m *Metric) LastSuccess() time.Time {
return m.lastSuccess
}
func (m *Metric) LastTimeout() time.Time {
return m.lastTimeout
}