-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmetrics_types.go
170 lines (146 loc) · 3.7 KB
/
metrics_types.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
package runtime
import (
"encoding/json"
"fmt"
"reflect"
"sync"
"time"
"github.com/rcrowley/go-metrics"
)
var pools [7]sync.Pool
func init() {
for i := range pools {
pools[i].New = func() interface{} {
return &Metric{
Type: MetricType(i),
Measures: make(map[string]interface{}, 1),
}
}
}
}
type MetricType int
const (
MetricPoint MetricType = iota
MetricCounter
MetricEWMA
MetricGauge
MetricHistogram
MetricMeter
MetricTimer
)
var typeMappings = [...]string{"point", "counter", "ewma", "gauge", "histogram", "meter", "timer"}
func (mt MetricType) String() string {
return typeMappings[mt]
}
func (mt MetricType) MarshalJSON() ([]byte, error) {
return json.Marshal(mt.String())
}
// UnmarshalJSON is only used for testing; it's inefficient but not relevant.
func (mt *MetricType) UnmarshalJSON(b []byte) error {
var s string
if err := json.Unmarshal(b, &s); err != nil {
return nil
}
for i, m := range typeMappings {
if m == s {
*mt = MetricType(i)
return nil
}
}
return fmt.Errorf("invalid metric type")
}
type Metric struct {
Timestamp int64 `json:"ts"`
Type MetricType `json:"type"`
Name string `json:"name"`
Measures map[string]interface{} `json:"measures"`
}
func (m *Metric) Release() {
pools[m.Type].Put(m)
}
func NewMetric(name string, i interface{}) *Metric {
var (
m *Metric
t MetricType
ts = time.Now().UnixNano()
)
switch v := i.(type) {
case Point:
t = MetricPoint
m = pools[t].Get().(*Metric)
m.Measures["value"] = float64(v)
case Counter:
t = MetricCounter
m = pools[t].Get().(*Metric)
s := v.Snapshot()
m.Measures["count"] = s.Count()
case EWMA:
t = MetricEWMA
m = pools[t].Get().(*Metric)
s := v.Snapshot()
m.Measures["rate"] = s.Rate()
case Gauge: // float64 gauge, aliased in our SDK
t = MetricGauge
m = pools[t].Get().(*Metric)
s := v.Snapshot()
m.Measures["value"] = s.Value()
case metrics.Gauge: // int64 gauge, used by go runtime metrics
t = MetricGauge
m = pools[t].Get().(*Metric)
s := v.Snapshot()
m.Measures["value"] = float64(s.Value())
case Histogram:
t = MetricHistogram
m = pools[t].Get().(*Metric)
s := v.Snapshot()
p := s.Percentiles([]float64{0.5, 0.75, 0.95, 0.99, 0.999, 0.9999})
m.Measures["count"] = float64(s.Count())
m.Measures["max"] = float64(s.Max())
m.Measures["mean"] = s.Mean()
m.Measures["min"] = float64(s.Min())
m.Measures["stddev"] = s.StdDev()
m.Measures["variance"] = s.Variance()
m.Measures["p50"] = p[0]
m.Measures["p75"] = p[1]
m.Measures["p95"] = p[2]
m.Measures["p99"] = p[3]
m.Measures["p999"] = p[4]
m.Measures["p9999"] = p[5]
case Meter:
t = MetricMeter
m = pools[t].Get().(*Metric)
s := v.Snapshot()
m.Measures["count"] = float64(s.Count())
m.Measures["m1"] = s.Rate1()
m.Measures["m5"] = s.Rate5()
m.Measures["m15"] = s.Rate15()
m.Measures["mean"] = s.RateMean()
case Timer:
t = MetricTimer
m = pools[t].Get().(*Metric)
s := v.Snapshot()
p := s.Percentiles([]float64{0.5, 0.75, 0.95, 0.99, 0.999, 0.9999})
m.Measures["count"] = float64(s.Count())
m.Measures["max"] = float64(s.Max())
m.Measures["mean"] = s.Mean()
m.Measures["min"] = float64(s.Min())
m.Measures["stddev"] = s.StdDev()
m.Measures["variance"] = s.Variance()
m.Measures["p50"] = p[0]
m.Measures["p75"] = p[1]
m.Measures["p95"] = p[2]
m.Measures["p99"] = p[3]
m.Measures["p999"] = p[4]
m.Measures["p9999"] = p[5]
m.Measures["m1"] = s.Rate1()
m.Measures["m5"] = s.Rate5()
m.Measures["m15"] = s.Rate15()
m.Measures["meanrate"] = s.RateMean()
default:
panic(fmt.Sprintf("unexpected metric type: %v", reflect.TypeOf(v)))
}
m.Timestamp = ts
m.Type = t
m.Name = name
return m
}