This repository was archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprometheus.go
118 lines (104 loc) · 3.07 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
package metrics
import (
"errors"
"github.com/prometheus/client_golang/prometheus"
dto "github.com/prometheus/client_model/go"
"google.golang.org/protobuf/proto"
)
// -----------------------------------------------------------------------------
type ValueHandler func() float64
type VectorMetric []struct {
Values []string
Handler ValueHandler
}
// -----------------------------------------------------------------------------
// CreateCounterWithCallback creates a single counter metric where its data is populated by calling a callback
func (mws *Controller) CreateCounterWithCallback(name string, help string, handler ValueHandler) error {
coll := prometheus.NewCounterFunc(
prometheus.CounterOpts{
Name: name,
Help: help,
},
handler,
)
return mws.registry.Register(coll)
}
// CreateCounterVecWithCallback creates a vector of counters metric where their data are populated by calling a callback
func (mws *Controller) CreateCounterVecWithCallback(
name string, help string, variableLabels []string, subItems VectorMetric,
) error {
desc := prometheus.NewDesc(
prometheus.BuildFQName("", "", name),
help,
variableLabels,
nil,
)
coll := &counterVecWithCallbackCollector{
desc: desc,
metrics: make([]prometheus.Metric, 0),
}
for _, item := range subItems {
if len(item.Values) != len(variableLabels) {
return errors.New("invalid parameter")
}
m := &counterVecWithCallbackMetric{
desc: desc,
handler: item.Handler,
}
m.self = m
m.labelPairs = make([]*dto.LabelPair, 0)
for idx, v := range item.Values {
m.labelPairs = append(m.labelPairs, &dto.LabelPair{
Name: proto.String(variableLabels[idx]),
Value: proto.String(v),
})
}
coll.metrics = append(coll.metrics, m)
}
return mws.registry.Register(coll)
}
// CreateGaugeWithCallback creates a single gauge metric where its data is populated by calling a callback
func (mws *Controller) CreateGaugeWithCallback(name string, help string, handler ValueHandler) error {
coll := prometheus.NewGaugeFunc(
prometheus.GaugeOpts{
Name: name,
Help: help,
},
handler,
)
return mws.registry.Register(coll)
}
// CreateGaugeVecWithCallback creates a vector of gauges metric where their data are populated by calling a callback
func (mws *Controller) CreateGaugeVecWithCallback(
name string, help string, variableLabels []string, subItems VectorMetric,
) error {
desc := prometheus.NewDesc(
prometheus.BuildFQName("", "", name),
help,
variableLabels,
nil,
)
coll := &gaugeVecWithCallbackCollector{
desc: desc,
metrics: make([]prometheus.Metric, 0),
}
for _, item := range subItems {
if len(item.Values) != len(variableLabels) {
return errors.New("invalid parameter")
}
m := &gaugeVecWithCallbackMetric{
desc: desc,
handler: item.Handler,
}
m.self = m
m.labelPairs = make([]*dto.LabelPair, 0)
for idx, v := range item.Values {
m.labelPairs = append(m.labelPairs, &dto.LabelPair{
Name: proto.String(variableLabels[idx]),
Value: proto.String(v),
})
}
coll.metrics = append(coll.metrics, m)
}
return mws.registry.Register(coll)
}