-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmetrics_oncall.go
More file actions
92 lines (73 loc) · 2.28 KB
/
metrics_oncall.go
File metadata and controls
92 lines (73 loc) · 2.28 KB
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
package main
import (
"log/slog"
"time"
"github.com/PagerDuty/go-pagerduty"
"github.com/prometheus/client_golang/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"},
)
m.Collector.RegisterMetricList("pagerduty_schedule_oncall", m.prometheus.scheduleOnCall, true)
}
func (m *MetricsCollectorOncall) Reset() {
}
func (m *MetricsCollectorOncall) Collect(callback chan<- func()) {
listOpts := pagerduty.ListOnCallOptions{}
listOpts.Limit = PagerdutyListLimit
listOpts.Earliest = true
listOpts.Offset = 0
onCallMetricList := m.Collector.GetMetricList("pagerduty_schedule_oncall")
for {
m.Logger().Debug("fetch schedule oncalls", slog.Uint64("offset", uint64(listOpts.Offset)), slog.Uint64("limit", uint64(listOpts.Limit)))
list, err := PagerDutyClient.ListOnCallsWithContext(m.Context(), listOpts)
PrometheusPagerDutyApiCounter.WithLabelValues("ListOnCalls").Inc()
if err != nil {
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
}
}
}