forked from trustpilot/beat-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
226 lines (184 loc) · 5.26 KB
/
main.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package main
import (
"context"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"net"
"net/http"
"net/url"
"os"
"strings"
"time"
log "github.com/sirupsen/logrus"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/version"
"github.com/trustpilot/beat-exporter/collector"
"github.com/trustpilot/beat-exporter/internal/service"
)
const (
serviceName = "beat_exporter"
)
func main() {
var (
Name = serviceName
listenAddress = flag.String("web.listen-address", ":9479", "Address to listen on for web interface and telemetry.")
tlsCertFile = flag.String("tls.certfile", "", "TLS certs file if you want to use tls instead of http")
tlsKeyFile = flag.String("tls.keyfile", "", "TLS key file if you want to use tls instead of http")
metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.")
beatURI = flag.String("beat.uri", "http://localhost:5066", "HTTP API address of beat.")
beatTimeout = flag.Duration("beat.timeout", 10*time.Second, "Timeout for trying to get stats from beat.")
showVersion = flag.Bool("version", false, "Show version and exit")
systemBeat = flag.Bool("beat.system", false, "Expose system stats")
)
flag.Parse()
if *showVersion {
fmt.Print(version.Print(Name))
os.Exit(0)
}
log.SetLevel(log.DebugLevel)
log.SetFormatter(&log.JSONFormatter{
FieldMap: log.FieldMap{
log.FieldKeyMsg: "message",
},
})
beatURL, err := url.Parse(*beatURI)
if err != nil {
log.Fatalf("failed to parse beat.uri, error: %v", err)
}
httpClient := &http.Client{
Timeout: *beatTimeout,
}
if beatURL.Scheme == "unix" {
unixPath := beatURL.Path
beatURL.Scheme = "http"
beatURL.Host = "localhost"
beatURL.Path = ""
httpClient.Transport = &http.Transport{
DialContext: func(ctx context.Context, _, _ string) (net.Conn, error) {
return (&net.Dialer{}).DialContext(ctx, "unix", unixPath)
},
}
}
log.Info("Exploring target for beat type")
var beatInfo *collector.BeatInfo
stopCh := make(chan bool)
err = service.SetupServiceListener(stopCh, serviceName, log.StandardLogger())
if err != nil {
log.WithFields(log.Fields{
"err": err,
}).Errorf("could not setup service listener: %v", err)
}
t := time.NewTicker(1 * time.Second)
beatdiscovery:
for {
select {
case <-t.C:
beatInfo, err = loadBeatType(httpClient, *beatURL)
if err != nil {
log.Errorf("Could not load beat type, with error: %v, retrying in 1s", err)
continue
}
break beatdiscovery
case <-stopCh:
os.Exit(0) // signal received, stop gracefully
}
}
t.Stop()
// version metric
registry := prometheus.NewRegistry()
versionMetric := version.NewCollector(Name)
mainCollector := collector.NewMainCollector(httpClient, beatURL, Name, beatInfo, *systemBeat)
registry.MustRegister(versionMetric)
registry.MustRegister(mainCollector)
http.Handle(*metricsPath, promhttp.HandlerFor(
registry,
promhttp.HandlerOpts{
ErrorLog: log.New(),
DisableCompression: false,
ErrorHandling: promhttp.ContinueOnError}),
)
http.HandleFunc("/", IndexHandler(*metricsPath))
log.WithFields(log.Fields{
"addr": *listenAddress,
}).Infof("Starting exporter with configured type: %s", beatInfo.Beat)
go func() {
defer func() {
stopCh <- true
}()
log.Info("Starting listener")
if *tlsCertFile != "" && *tlsKeyFile != "" {
if err := http.ListenAndServeTLS(*listenAddress, *tlsCertFile, *tlsKeyFile, nil); err != nil {
log.WithFields(log.Fields{
"err": err,
}).Errorf("tls server quit with error: %v", err)
}
} else {
if err := http.ListenAndServe(*listenAddress, nil); err != nil {
log.WithFields(log.Fields{
"err": err,
}).Errorf("http server quit with error: %v", err)
}
}
log.Info("Listener exited")
}()
for {
if <-stopCh {
log.Info("Shutting down beats exporter")
break
}
}
}
// IndexHandler returns a http handler with the correct metricsPath
func IndexHandler(metricsPath string) http.HandlerFunc {
indexHTML := `
<html>
<head>
<title>Beat Exporter</title>
</head>
<body>
<h1>Beat Exporter</h1>
<p>
<a href='%s'>Metrics</a>
</p>
</body>
</html>
`
index := []byte(fmt.Sprintf(strings.TrimSpace(indexHTML), metricsPath))
return func(w http.ResponseWriter, r *http.Request) {
w.Write(index)
}
}
func loadBeatType(client *http.Client, url url.URL) (*collector.BeatInfo, error) {
beatInfo := &collector.BeatInfo{}
response, err := client.Get(url.String())
if err != nil {
return beatInfo, err
}
defer response.Body.Close()
if response.StatusCode != http.StatusOK {
log.Errorf("Beat URL: %q status code: %d", url.String(), response.StatusCode)
return beatInfo, err
}
bodyBytes, err := ioutil.ReadAll(response.Body)
if err != nil {
log.Error("Can't read body of response")
return beatInfo, err
}
err = json.Unmarshal(bodyBytes, &beatInfo)
if err != nil {
log.Error("Could not parse JSON response for target")
return beatInfo, err
}
log.WithFields(
log.Fields{
"beat": beatInfo.Beat,
"version": beatInfo.Version,
"name": beatInfo.Name,
"hostname": beatInfo.Hostname,
"uuid": beatInfo.UUID,
}).Info("Target beat configuration loaded successfully!")
return beatInfo, nil
}