forked from webdevops/pagerduty-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metrics_team.go
75 lines (60 loc) · 1.59 KB
/
metrics_team.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
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 MetricsCollectorTeam struct {
collector.Processor
prometheus struct {
team *prometheus.GaugeVec
}
}
func (m *MetricsCollectorTeam) Setup(collector *collector.Collector) {
m.Processor.Setup(collector)
m.prometheus.team = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "pagerduty_team_info",
Help: "PagerDuty team",
},
[]string{
"teamID",
"teamName",
"teamUrl",
},
)
prometheus.MustRegister(m.prometheus.team)
}
func (m *MetricsCollectorTeam) Reset() {
m.prometheus.team.Reset()
}
func (m *MetricsCollectorTeam) Collect(callback chan<- func()) {
listOpts := pagerduty.ListTeamOptions{}
listOpts.Limit = PagerdutyListLimit
listOpts.Offset = 0
teamMetricList := prometheusCommon.NewMetricsList()
for {
m.Logger().Debugf("fetch teams (offset: %v, limit:%v)", listOpts.Offset, listOpts.Limit)
list, err := PagerDutyClient.ListTeamsWithContext(m.Context(), listOpts)
PrometheusPagerDutyApiCounter.WithLabelValues("ListTeams").Inc()
if err != nil {
m.Logger().Panic(err)
}
for _, team := range list.Teams {
teamMetricList.AddInfo(prometheus.Labels{
"teamID": team.ID,
"teamName": team.Name,
"teamUrl": team.HTMLURL,
})
}
listOpts.Offset += list.Limit
if stopPagerdutyPaging(list.APIListObject) {
break
}
}
// set metrics
callback <- func() {
teamMetricList.GaugeSet(m.prometheus.team)
}
}