-
Notifications
You must be signed in to change notification settings - Fork 24
/
metrics_user.go
91 lines (74 loc) · 1.94 KB
/
metrics_user.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
package main
import (
"github.com/PagerDuty/go-pagerduty"
"github.com/prometheus/client_golang/prometheus"
prometheusCommon "github.com/webdevops/go-common/prometheus"
"github.com/webdevops/go-common/prometheus/collector"
)
type MetricsCollectorUser struct {
collector.Processor
prometheus struct {
user *prometheus.GaugeVec
}
teamListOpt []string
}
func (m *MetricsCollectorUser) Setup(collector *collector.Collector) {
m.Processor.Setup(collector)
m.prometheus.user = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "pagerduty_user_info",
Help: "PagerDuty user",
},
[]string{
"userID",
"userName",
"userMail",
"userAvatar",
"userColor",
"userJobTitle",
"userRole",
"userTimezone",
},
)
prometheus.MustRegister(m.prometheus.user)
}
func (m *MetricsCollectorUser) Reset() {
m.prometheus.user.Reset()
}
func (m *MetricsCollectorUser) Collect(callback chan<- func()) {
listOpts := pagerduty.ListUsersOptions{}
listOpts.Limit = PagerdutyListLimit
listOpts.Offset = 0
if len(m.teamListOpt) > 0 {
listOpts.TeamIDs = m.teamListOpt
}
userMetricList := prometheusCommon.NewMetricsList()
for {
m.Logger().Debugf("fetch users (offset: %v, limit:%v)", listOpts.Offset, listOpts.Limit)
list, err := PagerDutyClient.ListUsersWithContext(m.Context(), listOpts)
PrometheusPagerDutyApiCounter.WithLabelValues("ListUsers").Inc()
if err != nil {
m.Logger().Panic(err)
}
for _, user := range list.Users {
userMetricList.AddInfo(prometheus.Labels{
"userID": user.ID,
"userName": user.Name,
"userMail": user.Email,
"userAvatar": user.AvatarURL,
"userColor": user.Color,
"userJobTitle": user.JobTitle,
"userRole": user.Role,
"userTimezone": user.Timezone,
})
}
listOpts.Offset += list.Limit
if stopPagerdutyPaging(list.APIListObject) {
break
}
}
// set metrics
callback <- func() {
userMetricList.GaugeSet(m.prometheus.user)
}
}