-
Notifications
You must be signed in to change notification settings - Fork 24
/
metrics_service.go
95 lines (77 loc) · 2.08 KB
/
metrics_service.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
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 MetricsCollectorService struct {
collector.Processor
prometheus struct {
service *prometheus.GaugeVec
}
teamListOpt []string
}
func (m *MetricsCollectorService) Setup(collector *collector.Collector) {
m.Processor.Setup(collector)
m.prometheus.service = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "pagerduty_service_info",
Help: "PagerDuty service",
},
[]string{
"serviceID",
"teamID",
"serviceName",
"serviceUrl",
},
)
prometheus.MustRegister(m.prometheus.service)
}
func (m *MetricsCollectorService) Reset() {
m.prometheus.service.Reset()
}
func (m *MetricsCollectorService) Collect(callback chan<- func()) {
listOpts := pagerduty.ListServiceOptions{}
listOpts.Limit = PagerdutyListLimit
listOpts.Offset = 0
if len(m.teamListOpt) > 0 {
listOpts.TeamIDs = m.teamListOpt
}
serviceMetricList := prometheusCommon.NewMetricsList()
for {
m.Logger().Debugf("fetch services (offset: %v, limit:%v)", listOpts.Offset, listOpts.Limit)
list, err := PagerDutyClient.ListServicesWithContext(m.Context(), listOpts)
PrometheusPagerDutyApiCounter.WithLabelValues("ListServices").Inc()
if err != nil {
m.Logger().Panic(err)
}
for _, service := range list.Services {
if len(service.Teams) > 0 {
for _, team := range service.Teams {
serviceMetricList.AddInfo(prometheus.Labels{
"serviceID": service.ID,
"teamID": team.ID,
"serviceName": service.Name,
"serviceUrl": service.HTMLURL,
})
}
} else {
serviceMetricList.AddInfo(prometheus.Labels{
"serviceID": service.ID,
"teamID": "",
"serviceName": service.Name,
"serviceUrl": service.HTMLURL,
})
}
}
listOpts.Offset += list.Limit
if stopPagerdutyPaging(list.APIListObject) {
break
}
}
// set metrics
callback <- func() {
serviceMetricList.GaugeSet(m.prometheus.service)
}
}