This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetrics.go
78 lines (70 loc) · 1.71 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
package cache
import (
"fmt"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/sirupsen/logrus"
)
const (
subsystem = "go_cache"
)
func incrementCounterVec(c *prometheus.CounterVec, statusCode int) {
if c != nil {
c.WithLabelValues(fmt.Sprintf("%d", statusCode)).Inc()
}
}
func initCounterVec(m *prometheus.CounterVec, name string, help string) *prometheus.CounterVec {
if m == nil {
m = prometheus.NewCounterVec(
prometheus.CounterOpts{
Subsystem: subsystem,
Name: name,
Help: help,
},
[]string{"status_code"},
)
if err := prometheus.Register(m); err != nil {
logrus.Infof("%s could not be registered: " + name + err.Error())
} else {
logrus.Infof("%s registered.", name)
}
}
return m
}
func initSummary(m prometheus.Summary, name string, help string) prometheus.Summary {
if m == nil {
m = prometheus.NewSummary(
prometheus.SummaryOpts{
Subsystem: subsystem,
Name: name,
Help: help,
},
)
if err := prometheus.Register(m); err != nil {
logrus.Infof("%s could not be registered: " + name + err.Error())
} else {
logrus.Infof("%s registered.", name)
}
}
return m
}
func observeSummary(s prometheus.Summary, start time.Time) {
elapsed := float64(time.Since(start)) / float64(time.Second)
s.Observe(elapsed)
}
func initGaugeWithFunc(gaugeFunc func() float64, name string, help string) error {
gf := prometheus.NewGaugeFunc(
prometheus.GaugeOpts{
Subsystem: subsystem,
Name: name,
Help: help,
},
gaugeFunc,
)
if err := prometheus.Register(gf); err != nil {
logrus.Infof("%s could not be registered: %s", name, err.Error())
return err
}
logrus.Infof("%s registered.", name)
return nil
}