-
Notifications
You must be signed in to change notification settings - Fork 61
/
slave_state.go
136 lines (121 loc) · 3.94 KB
/
slave_state.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Scrape the /slave(1)/state endpoint to get information on the tasks running
// on executors. Information scraped at this point:
//
// * Labels of running tasks ("mesos_slave_task_labels" series)
// * Attributes of mesos slaves ("mesos_slave_attributes")
package main
import (
"encoding/json"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
)
type (
slaveState struct {
Attributes map[string]json.RawMessage `json:"attributes"`
Frameworks []slaveFramework `json:"frameworks"`
}
slaveFramework struct {
ID string `json:"ID"`
Executors []slaveStateExecutor `json:"executors"`
}
slaveStateExecutor struct {
ID string `json:"id"`
Name string `json:"name"`
Source string `json:"source"`
Tasks []task `json:"tasks"`
}
slaveStateCollector struct {
*httpClient
metrics map[*prometheus.Desc]slaveMetric
}
slaveMetric struct {
valueType prometheus.ValueType
value func(*slaveState) []metricValue
}
metricValue struct {
result float64
labels []string
}
)
func newSlaveStateCollector(httpClient *httpClient, userTaskLabelList []string, slaveAttributeLabelList []string) *slaveStateCollector {
c := slaveStateCollector{httpClient, make(map[*prometheus.Desc]slaveMetric)}
defaultTaskLabels := []string{"source", "framework_id", "executor_id", "task_id", "task_name"}
normalisedUserTaskLabelList := normaliseLabelList(userTaskLabelList)
taskLabelList := append(defaultTaskLabels, normalisedUserTaskLabelList...)
c.metrics[prometheus.NewDesc(
prometheus.BuildFQName("mesos", "slave", "task_labels"),
"Labels assigned to tasks running on slaves",
taskLabelList,
nil)] = slaveMetric{prometheus.CounterValue,
func(st *slaveState) []metricValue {
res := []metricValue{}
for _, f := range st.Frameworks {
for _, e := range f.Executors {
for _, t := range e.Tasks {
//Default labels
taskLabels := prometheus.Labels{
"source": e.Source,
"framework_id": f.ID,
"executor_id": e.ID,
"task_id": t.ID,
"task_name": t.Name,
}
// User labels
for _, label := range normalisedUserTaskLabelList {
taskLabels[label] = ""
}
for _, label := range t.Labels {
normalisedLabel := normaliseLabel(label.Key)
// Ignore labels not explicitly whitelisted by user
if stringInSlice(normalisedLabel, normalisedUserTaskLabelList) {
taskLabels[normalisedLabel] = label.Value
}
}
res = append(res, metricValue{1, getLabelValuesFromMap(taskLabels, taskLabelList)})
}
}
}
return res
},
}
if len(slaveAttributeLabelList) > 0 {
normalisedAttributeLabels := normaliseLabelList(slaveAttributeLabelList)
c.metrics[prometheus.NewDesc(
prometheus.BuildFQName("mesos", "slave", "attributes"),
"Attributes assigned to slaves",
normalisedAttributeLabels,
nil)] = slaveMetric{prometheus.CounterValue,
func(st *slaveState) []metricValue {
slaveAttributes := prometheus.Labels{}
for _, label := range normalisedAttributeLabels {
slaveAttributes[label] = ""
}
for key, value := range st.Attributes {
normalisedLabel := normaliseLabel(key)
if stringInSlice(normalisedLabel, normalisedAttributeLabels) {
if attribute, err := attributeString(value); err == nil {
slaveAttributes[normalisedLabel] = attribute
}
}
}
return []metricValue{{1, getLabelValuesFromMap(slaveAttributes, normalisedAttributeLabels)}}
},
}
}
return &c
}
func (c *slaveStateCollector) Collect(ch chan<- prometheus.Metric) {
var s slaveState
log.WithField("url", "/slave(1)/state").Debug("fetching URL")
c.fetchAndDecode("/slave(1)/state", &s)
for d, cm := range c.metrics {
for _, m := range cm.value(&s) {
ch <- prometheus.MustNewConstMetric(d, cm.valueType, m.result, m.labels...)
}
}
}
func (c *slaveStateCollector) Describe(ch chan<- *prometheus.Desc) {
for d := range c.metrics {
ch <- d
}
}