-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprometheus.go
329 lines (257 loc) · 7.1 KB
/
prometheus.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
package metrics
import (
"fmt"
"github.com/prometheus/client_golang/prometheus"
"sync"
)
type prometheusReporter struct {
registry prometheus.Registerer
prefix string
namespace, subSystem string
constLabels map[string]string
availableMetrics map[string]Collector
*sync.Mutex
}
func PrometheusReporter(conf ReporterConf) Reporter {
constLabels := map[string]string{}
if conf.ConstLabels != nil {
for label, val := range conf.ConstLabels {
constLabels[label] = val
}
}
r := &prometheusReporter{
registry: prometheus.DefaultRegisterer,
namespace: conf.System,
subSystem: conf.Subsystem,
constLabels: mergeLabels(constLabels, nil),
Mutex: new(sync.Mutex),
}
r.availableMetrics = make(map[string]Collector)
return r
}
func (r *prometheusReporter) Reporter(conf ReporterConf) Reporter {
rConf := ReporterConf{
System: r.namespace,
Subsystem: r.subSystem,
ConstLabels: mergeLabels(r.constLabels, conf.ConstLabels),
}
if conf.Subsystem != `` {
rConf.Subsystem = fmt.Sprintf(`%s_%s`, r.subSystem, conf.Subsystem)
}
return PrometheusReporter(rConf)
}
func (r *prometheusReporter) Counter(conf MetricConf) Counter {
r.Mutex.Lock()
defer r.Mutex.Unlock()
if c, ok := r.availableMetrics[conf.Path]; ok {
return c.(Counter)
}
promCounter := prometheus.NewCounterVec(prometheus.CounterOpts{
Name: conf.Path,
Help: conf.Help,
Namespace: r.namespace,
Subsystem: r.subSystem,
ConstLabels: mergeLabels(r.constLabels, conf.ConstLabels),
}, conf.Labels)
if err := r.registry.Register(promCounter); err != nil {
if _, ok := err.(prometheus.AlreadyRegisteredError); !ok {
panic(err)
}
}
c := &prometheusCounter{
counter: promCounter,
}
r.availableMetrics[conf.Path] = c
return c
}
func (r *prometheusReporter) Gauge(conf MetricConf) Gauge {
r.Mutex.Lock()
defer r.Mutex.Unlock()
if g, ok := r.availableMetrics[conf.Path]; ok {
return g.(Gauge)
}
promGauge := prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: conf.Path,
Help: conf.Help,
Namespace: r.namespace,
Subsystem: r.subSystem,
ConstLabels: mergeLabels(r.constLabels, conf.ConstLabels),
}, conf.Labels)
if err := r.registry.Register(promGauge); err != nil {
if _, ok := err.(prometheus.AlreadyRegisteredError); !ok {
panic(err)
}
}
g := &prometheusGauge{
gauge: promGauge,
}
r.availableMetrics[conf.Path] = g
return g
}
func (r *prometheusReporter) GaugeFunc(conf MetricConf, f func() float64) GaugeFunc {
r.Mutex.Lock()
defer r.Mutex.Unlock()
promGauge := prometheus.NewGaugeFunc(prometheus.GaugeOpts{
Name: conf.Path,
Help: conf.Help,
Namespace: r.namespace,
Subsystem: r.subSystem,
ConstLabels: mergeLabels(r.constLabels, conf.ConstLabels),
}, f)
if err := r.registry.Register(promGauge); err != nil {
if _, ok := err.(prometheus.AlreadyRegisteredError); !ok {
panic(err)
}
}
g := &prometheusGaugeFunc{
gauge: promGauge,
}
r.availableMetrics[conf.Path] = g
return g
}
func (r *prometheusReporter) Observer(conf MetricConf) Observer {
r.Mutex.Lock()
defer r.Mutex.Unlock()
if o, ok := r.availableMetrics[conf.Path]; ok {
return o.(Observer)
}
promObserver := prometheus.NewSummaryVec(prometheus.SummaryOpts{
Name: conf.Path,
Help: conf.Help,
Namespace: r.namespace,
Subsystem: r.subSystem,
Objectives: map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001},
ConstLabels: mergeLabels(r.constLabels, conf.ConstLabels),
}, conf.Labels)
if err := r.registry.Register(promObserver); err != nil {
if _, ok := err.(prometheus.AlreadyRegisteredError); !ok {
panic(err)
}
}
h := &prometheusSummary{
observer: promObserver,
}
r.availableMetrics[conf.Path] = h
return h
}
func (r *prometheusReporter) Summary(conf MetricConf) Observer {
r.Mutex.Lock()
defer r.Mutex.Unlock()
if o, ok := r.availableMetrics[conf.Path]; ok {
return o.(Observer)
}
promObserver := prometheus.NewSummaryVec(prometheus.SummaryOpts{
Name: conf.Path,
Help: conf.Help,
Namespace: r.namespace,
Subsystem: r.subSystem,
Objectives: map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001},
ConstLabels: mergeLabels(r.constLabels, conf.ConstLabels),
}, conf.Labels)
if err := r.registry.Register(promObserver); err != nil {
if _, ok := err.(prometheus.AlreadyRegisteredError); !ok {
panic(err)
}
}
h := &prometheusSummary{
observer: promObserver,
}
r.availableMetrics[conf.Path] = h
return h
}
func (r *prometheusReporter) Histogram(conf MetricConf) Observer {
r.Mutex.Lock()
defer r.Mutex.Unlock()
if o, ok := r.availableMetrics[conf.Path]; ok {
return o.(Observer)
}
promObserver := prometheus.NewHistogramVec(prometheus.HistogramOpts{
Name: conf.Path,
Help: conf.Help,
Namespace: r.namespace,
Subsystem: r.subSystem,
ConstLabels: mergeLabels(r.constLabels, conf.ConstLabels),
}, conf.Labels)
if err := r.registry.Register(promObserver); err != nil {
if _, ok := err.(prometheus.AlreadyRegisteredError); !ok {
panic(err)
}
}
h := &prometheusHistogram{
observer: promObserver,
}
r.availableMetrics[conf.Path] = h
return h
}
func (r *prometheusReporter) Info() string { return `` }
func (r *prometheusReporter) UnRegister(metrics string) {
r.Mutex.Lock()
defer r.Mutex.Unlock()
if m, ok := r.availableMetrics[metrics]; ok {
m.UnRegister()
delete(r.availableMetrics, metrics)
}
}
type prometheusCounter struct {
counter *prometheus.CounterVec
}
func (c *prometheusCounter) Count(value float64, lbs map[string]string) {
c.counter.With(lbs).Add(value)
}
func (c *prometheusCounter) UnRegister() {
prometheus.Unregister(c.counter)
}
type prometheusGauge struct {
gauge *prometheus.GaugeVec
}
func (g *prometheusGauge) Count(value float64, lbs map[string]string) {
g.gauge.With(lbs).Add(value)
}
func (g *prometheusGauge) Set(value float64, lbs map[string]string) {
g.gauge.With(lbs).Set(value)
}
func (g *prometheusGauge) UnRegister() {
prometheus.Unregister(g.gauge)
}
type prometheusGaugeFunc struct {
gauge prometheus.GaugeFunc
}
func (h *prometheusGaugeFunc) UnRegister() {
prometheus.Unregister(h.gauge)
}
type prometheusHistogram struct {
observer *prometheus.HistogramVec
}
func (c *prometheusHistogram) Observe(value float64, lbs map[string]string) {
c.observer.With(lbs).Observe(value)
}
func (c *prometheusHistogram) UnRegister() {
prometheus.Unregister(c.observer)
}
type prometheusSummary struct {
observer *prometheus.SummaryVec
}
func (c *prometheusSummary) Observe(value float64, lbs map[string]string) {
c.observer.With(lbs).Observe(value)
}
func (c *prometheusSummary) UnRegister() {
prometheus.Unregister(c.observer)
}
func mergeLabels(from map[string]string, to map[string]string) map[string]string {
constLabels := map[string]string{}
// get existing labels
if from != nil {
for label, val := range from {
constLabels[label] = val
}
}
if to != nil {
for label, val := range to {
if _, ok := constLabels[label]; ok {
panic(fmt.Sprintf(`label %s already registred`, label))
}
constLabels[label] = val
}
}
return constLabels
}