forked from messagebird/beanstalkd_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapper.go
178 lines (148 loc) · 4.32 KB
/
mapper.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
// Copyright 2013 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"fmt"
"io/ioutil"
"regexp"
"strings"
"sync"
"github.com/prometheus/client_golang/prometheus"
)
var (
identifierRE = `[a-zA-Z_-][a-zA-Z0-9_-]+`
labelLineRE = regexp.MustCompile(`^(` + identifierRE + `)\s*=\s*"(.*)"$`)
tubeNameRE = regexp.MustCompile(`^` + identifierRE + `$`)
)
type tubeMapping struct {
regex *regexp.Regexp
labels prometheus.Labels
}
type tubeMapper struct {
mappings []tubeMapping
allLabels []string
mutex sync.Mutex
configLoadsMetric *prometheus.CounterVec
mappingsCountMetric prometheus.Gauge
}
type configLoadStates int
const (
searching configLoadStates = iota
tubeDefinition
)
func newTubeMapper() *tubeMapper {
return &tubeMapper{
configLoadsMetric: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: "beanstalkd",
Subsystem: "exporter",
Name: "config_reloads_total",
Help: "The number of configuration reloads.",
},
[]string{"outcome"},
),
mappingsCountMetric: prometheus.NewGauge(prometheus.GaugeOpts{
Namespace: "beanstalkd",
Subsystem: "exporter",
Name: "loaded_mappings_count",
Help: "The number of configured metric mappings.",
}),
}
}
func (m *tubeMapper) initFromString(fileContents string) error {
lines := strings.Split(fileContents, "\n")
state := searching
allLabels := map[string]int{}
parsedMappings := []tubeMapping{}
currentMapping := tubeMapping{labels: prometheus.Labels{}}
for i, line := range lines {
line := strings.TrimSpace(line)
switch state {
case searching:
if line == "" {
continue
}
currentMapping.regex = regexp.MustCompile("^" + line + "$")
state = tubeDefinition
case tubeDefinition:
if line == "" {
if len(currentMapping.labels) == 0 {
return fmt.Errorf("Line %d: tube mapping didn't set any labels", i)
}
if _, ok := currentMapping.labels["name"]; !ok {
return fmt.Errorf("Line %d: tube mapping didn't set a tube name", i)
}
parsedMappings = append(parsedMappings, currentMapping)
state = searching
currentMapping = tubeMapping{labels: prometheus.Labels{}}
continue
}
matches := labelLineRE.FindStringSubmatch(line)
if len(matches) != 3 {
return fmt.Errorf("Line %d: expected label mapping line, got: %s", i, line)
}
label, value := matches[1], matches[2]
if label == "name" && !tubeNameRE.MatchString(value) {
return fmt.Errorf("Line %d: tube name '%s' doesn't match regex '%s'", i, value, tubeNameRE)
}
currentMapping.labels[label] = value
allLabels[label] = 1
default:
panic("illegal state")
}
}
m.mutex.Lock()
defer m.mutex.Unlock()
m.mappings = parsedMappings
// get the list of unique labels across all mappings
delete(allLabels, "name")
allLabels["tube"] = 1
labelNames := make([]string, len(allLabels))
i := 0
for k := range allLabels {
labelNames[i] = k
i++
}
m.allLabels = labelNames
m.mappingsCountMetric.Set(float64(len(parsedMappings)))
return nil
}
func (m *tubeMapper) initFromFile(fileName string) error {
mappingStr, err := ioutil.ReadFile(fileName)
if err != nil {
return err
}
return m.initFromString(string(mappingStr))
}
func (m *tubeMapper) getMapping(originalTube string) (labels prometheus.Labels, present bool) {
m.mutex.Lock()
defer m.mutex.Unlock()
for _, mapping := range m.mappings {
matches := mapping.regex.FindStringSubmatchIndex(originalTube)
if len(matches) == 0 {
continue
}
labels := prometheus.Labels{}
for label, valueExpr := range mapping.labels {
value := mapping.regex.ExpandString([]byte{}, valueExpr, originalTube, matches)
labels[label] = string(value)
}
return labels, true
}
return nil, false
}
func (m *tubeMapper) getAllLabels() []string {
m.mutex.Lock()
defer m.mutex.Unlock()
return m.allLabels
}