forked from webdevops/pagerduty-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metrics_oncall.go
99 lines (78 loc) · 2.37 KB
/
metrics_oncall.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
package main
import (
"time"
"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 MetricsCollectorOncall struct {
collector.Processor
prometheus struct {
scheduleOnCall *prometheus.GaugeVec
}
}
func (m *MetricsCollectorOncall) Setup(collector *collector.Collector) {
m.Processor.Setup(collector)
m.prometheus.scheduleOnCall = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "pagerduty_schedule_oncall",
Help: "PagerDuty schedule oncall",
},
[]string{"scheduleID", "userID", "escalationLevel", "type"},
)
prometheus.MustRegister(m.prometheus.scheduleOnCall)
}
func (m *MetricsCollectorOncall) Reset() {
m.prometheus.scheduleOnCall.Reset()
}
func (m *MetricsCollectorOncall) Collect(callback chan<- func()) {
listOpts := pagerduty.ListOnCallOptions{}
listOpts.Limit = PagerdutyListLimit
listOpts.Earliest = true
listOpts.Offset = 0
onCallMetricList := prometheusCommon.NewMetricsList()
for {
m.Logger().Debugf("fetch schedule oncalls (offset: %v, limit:%v)", listOpts.Offset, listOpts.Limit)
list, err := PagerDutyClient.ListOnCallsWithContext(m.Context(), listOpts)
PrometheusPagerDutyApiCounter.WithLabelValues("ListOnCalls").Inc()
if err != nil {
m.Logger().Panic(err)
}
for _, oncall := range list.OnCalls {
startTime, _ := time.Parse(time.RFC3339, oncall.Start)
endTime, _ := time.Parse(time.RFC3339, oncall.End)
startValue := float64(startTime.Unix())
endValue := float64(endTime.Unix())
if startValue < 0 {
startValue = 1
}
if endValue < 0 {
endValue = 1
}
// start
onCallMetricList.Add(prometheus.Labels{
"scheduleID": oncall.Schedule.ID,
"userID": oncall.User.ID,
"escalationLevel": uintToString(oncall.EscalationLevel),
"type": "startTime",
}, startValue)
// end
onCallMetricList.Add(prometheus.Labels{
"scheduleID": oncall.Schedule.ID,
"userID": oncall.User.ID,
"escalationLevel": uintToString(oncall.EscalationLevel),
"type": "endTime",
}, endValue)
}
// loop
listOpts.Offset += list.Limit
if stopPagerdutyPaging(list.APIListObject) {
break
}
}
// set metrics
callback <- func() {
onCallMetricList.GaugeSet(m.prometheus.scheduleOnCall)
}
}