forked from percona/mysqld_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysqld_exporter.go
679 lines (614 loc) · 23.1 KB
/
mysqld_exporter.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
// Copyright 2018 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 (
"context"
"crypto/tls"
"crypto/x509"
"database/sql"
"fmt"
"net/http"
"os"
"path"
"path/filepath"
"strconv"
"strings"
"sync/atomic"
"time"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/go-sql-driver/mysql"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/promlog"
"github.com/prometheus/common/promlog/flag"
"github.com/prometheus/common/version"
"github.com/prometheus/exporter-toolkit/web"
webflag "github.com/prometheus/exporter-toolkit/web/kingpinflag"
"gopkg.in/alecthomas/kingpin.v2"
"gopkg.in/ini.v1"
"github.com/percona/mysqld_exporter/collector"
pcl "github.com/percona/mysqld_exporter/percona/perconacollector"
)
var (
webConfig = webflag.AddFlags(kingpin.CommandLine)
webConfigFile = kingpin.Flag(
"web.config",
"[EXPERIMENTAL] Path to config yaml file that can enable TLS or authentication.",
).Default("").String()
listenAddress = kingpin.Flag(
"web.listen-address",
"Address to listen on for web interface and telemetry.",
).Default(":9104").String()
metricPath = kingpin.Flag(
"web.telemetry-path",
"Path under which to expose metrics.",
).Default("/metrics").String()
timeoutOffset = kingpin.Flag(
"timeout-offset",
"Offset to subtract from timeout in seconds.",
).Default("0.25").Float64()
configMycnf = kingpin.Flag(
"config.my-cnf",
"Path to .my.cnf file to read MySQL credentials from.",
).Default(path.Join(os.Getenv("HOME"), ".my.cnf")).String()
exporterLockTimeout = kingpin.Flag(
"exporter.lock_wait_timeout",
"Set a lock_wait_timeout (in seconds) on the connection to avoid long metadata locking.",
).Default("2").Int()
exporterLogSlowFilter = kingpin.Flag(
"exporter.log_slow_filter",
"Add a log_slow_filter to avoid slow query logging of scrapes. NOTE: Not supported by Oracle MySQL.",
).Default("false").Bool()
exporterGlobalConnPool = kingpin.Flag(
"exporter.global-conn-pool",
"Use global connection pool instead of creating new pool for each http request.",
).Default("true").Bool()
exporterMaxOpenConns = kingpin.Flag(
"exporter.max-open-conns",
"Maximum number of open connections to the database. https://golang.org/pkg/database/sql/#DB.SetMaxOpenConns",
).Default("3").Int()
exporterMaxIdleConns = kingpin.Flag(
"exporter.max-idle-conns",
"Maximum number of connections in the idle connection pool. https://golang.org/pkg/database/sql/#DB.SetMaxIdleConns",
).Default("3").Int()
exporterConnMaxLifetime = kingpin.Flag(
"exporter.conn-max-lifetime",
"Maximum amount of time a connection may be reused. https://golang.org/pkg/database/sql/#DB.SetConnMaxLifetime",
).Default("1m").Duration()
collectAll = kingpin.Flag(
"collect.all",
"Collect all metrics.",
).Default("false").Bool()
mysqlSSLCAFile = kingpin.Flag(
"mysql.ssl-ca-file",
"SSL CA file for the MySQL connection",
).ExistingFile()
mysqlSSLCertFile = kingpin.Flag(
"mysql.ssl-cert-file",
"SSL Cert file for the MySQL connection",
).ExistingFile()
mysqlSSLKeyFile = kingpin.Flag(
"mysql.ssl-key-file",
"SSL Key file for the MySQL connection",
).ExistingFile()
mysqlSSLSkipVerify = kingpin.Flag(
"mysql.ssl-skip-verify",
"Skip cert verification when connection to MySQL",
).Bool()
tlsInsecureSkipVerify = kingpin.Flag(
"tls.insecure-skip-verify",
"Ignore certificate and server verification when using a tls connection.",
).Bool()
dsn string
)
// SQL queries and parameters.
const (
versionQuery = `SELECT @@version`
// System variable params formatting.
// See: https://github.com/go-sql-driver/mysql#system-variables
sessionSettingsParam = `log_slow_filter=%27tmp_table_on_disk,filesort_on_disk%27`
timeoutParam = `lock_wait_timeout=%d`
)
type webAuth struct {
User string `yaml:"server_user,omitempty"`
Password string `yaml:"server_password,omitempty"`
}
type basicAuthHandler struct {
handler http.HandlerFunc
user string
password string
}
func (h *basicAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
user, password, ok := r.BasicAuth()
if !ok || password != h.password || user != h.user {
w.Header().Set("WWW-Authenticate", "Basic realm=\"metrics\"")
http.Error(w, "Invalid username or password", http.StatusUnauthorized)
return
}
h.handler(w, r)
}
// scrapers lists all possible collection methods and if they should be enabled by default.
var scrapers = map[collector.Scraper]bool{
pcl.ScrapeGlobalStatus{}: false,
collector.ScrapeGlobalStatus{}: false,
collector.ScrapeGlobalVariables{}: false,
collector.ScrapePlugins{}: false,
collector.ScrapeSlaveStatus{}: false,
pcl.ScrapeProcesslist{}: false,
collector.ScrapeProcesslist{}: false,
collector.ScrapeUser{}: false,
collector.ScrapeTableSchema{}: false,
collector.ScrapeInfoSchemaInnodbTablespaces{}: false,
collector.ScrapeInnodbMetrics{}: false,
collector.ScrapeAutoIncrementColumns{}: false,
collector.ScrapeBinlogSize{}: false,
collector.ScrapePerfTableIOWaits{}: false,
collector.ScrapePerfIndexIOWaits{}: false,
collector.ScrapePerfTableLockWaits{}: false,
collector.ScrapePerfEventsStatements{}: false,
collector.ScrapePerfEventsStatementsSum{}: false,
collector.ScrapePerfEventsWaits{}: false,
collector.ScrapePerfFileEvents{}: false,
collector.ScrapePerfFileInstances{}: false,
collector.ScrapePerfMemoryEvents{}: false,
collector.ScrapePerfReplicationGroupMembers{}: false,
collector.ScrapePerfReplicationGroupMemberStats{}: false,
collector.ScrapePerfReplicationApplierStatsByWorker{}: false,
collector.ScrapeUserStat{}: false,
collector.ScrapeClientStat{}: false,
collector.ScrapeTableStat{}: false,
collector.ScrapeSchemaStat{}: false,
collector.ScrapeInnodbCmp{}: false,
collector.ScrapeInnodbCmpMem{}: false,
pcl.ScrapeInnodbCmp{}: false,
pcl.ScrapeInnodbCmpMem{}: false,
collector.ScrapeQueryResponseTime{}: false,
collector.ScrapeEngineTokudbStatus{}: false,
collector.ScrapeEngineInnodbStatus{}: false,
collector.ScrapeHeartbeat{}: false,
collector.ScrapeSlaveHosts{}: false,
collector.ScrapeReplicaHost{}: false,
pcl.ScrapeCustomQuery{Resolution: pcl.HR}: false,
pcl.ScrapeCustomQuery{Resolution: pcl.MR}: false,
pcl.ScrapeCustomQuery{Resolution: pcl.LR}: false,
pcl.NewStandardGo(): false,
pcl.NewStandardProcess(): false,
}
// TODO Remove
var scrapersHr = map[collector.Scraper]struct{}{
pcl.ScrapeGlobalStatus{}: {},
collector.ScrapeInnodbMetrics{}: {},
pcl.ScrapeCustomQuery{Resolution: pcl.HR}: {},
}
// TODO Remove
var scrapersMr = map[collector.Scraper]struct{}{
collector.ScrapeSlaveStatus{}: {},
pcl.ScrapeProcesslist{}: {},
collector.ScrapePerfEventsWaits{}: {},
collector.ScrapePerfFileEvents{}: {},
collector.ScrapePerfTableLockWaits{}: {},
collector.ScrapeQueryResponseTime{}: {},
collector.ScrapeEngineInnodbStatus{}: {},
pcl.ScrapeInnodbCmp{}: {},
pcl.ScrapeInnodbCmpMem{}: {},
pcl.ScrapeCustomQuery{Resolution: pcl.MR}: {},
}
// TODO Remove
var scrapersLr = map[collector.Scraper]struct{}{
collector.ScrapeGlobalVariables{}: {},
collector.ScrapePlugins{}: {},
collector.ScrapeTableSchema{}: {},
collector.ScrapeAutoIncrementColumns{}: {},
collector.ScrapeBinlogSize{}: {},
collector.ScrapePerfTableIOWaits{}: {},
collector.ScrapePerfIndexIOWaits{}: {},
collector.ScrapePerfFileInstances{}: {},
collector.ScrapeUserStat{}: {},
collector.ScrapeTableStat{}: {},
collector.ScrapePerfEventsStatements{}: {},
collector.ScrapeClientStat{}: {},
collector.ScrapeInfoSchemaInnodbTablespaces{}: {},
collector.ScrapeEngineTokudbStatus{}: {},
collector.ScrapeHeartbeat{}: {},
pcl.ScrapeCustomQuery{Resolution: pcl.LR}: {},
}
func parseMycnf(config interface{}, logger log.Logger) (string, error) {
var dsn string
opts := ini.LoadOptions{
// MySQL ini file can have boolean keys.
// PMM-2469: my.cnf can have boolean keys.
AllowBooleanKeys: true,
}
cfg, err := ini.LoadSources(opts, config)
if err != nil {
return dsn, fmt.Errorf("failed reading ini file: %s", err)
}
user := cfg.Section("client").Key("user").String()
password := cfg.Section("client").Key("password").String()
if user == "" {
return dsn, fmt.Errorf("no user specified under [client] in %s", config)
}
host := cfg.Section("client").Key("host").MustString("localhost")
port := cfg.Section("client").Key("port").MustUint(3306)
socket := cfg.Section("client").Key("socket").String()
sslCA := cfg.Section("client").Key("ssl-ca").String()
sslCert := cfg.Section("client").Key("ssl-cert").String()
sslKey := cfg.Section("client").Key("ssl-key").String()
passwordPart := ""
if password != "" {
passwordPart = ":" + password
} else {
if sslKey == "" {
return dsn, fmt.Errorf("password or ssl-key should be specified under [client] in %s", config)
}
}
if socket != "" {
dsn = fmt.Sprintf("%s%s@unix(%s)/", user, passwordPart, socket)
} else {
dsn = fmt.Sprintf("%s%s@tcp(%s:%d)/", user, passwordPart, host, port)
}
if sslCA != "" {
if tlsErr := customizeTLS(sslCA, sslCert, sslKey); tlsErr != nil {
tlsErr = fmt.Errorf("failed to register a custom TLS configuration for mysql dsn: %s", tlsErr)
return dsn, tlsErr
}
dsn, err = setTLSConfig(dsn)
if err != nil {
return "", fmt.Errorf("cannot set TLS configuration: %s", err)
}
}
level.Debug(logger).Log("dsn", dsn)
return dsn, nil
}
func customizeTLS(sslCA string, sslCert string, sslKey string) error {
var tlsCfg tls.Config
caBundle := x509.NewCertPool()
pemCA, err := os.ReadFile(filepath.Clean(sslCA))
if err != nil {
return err
}
if ok := caBundle.AppendCertsFromPEM(pemCA); ok {
tlsCfg.RootCAs = caBundle
} else {
return fmt.Errorf("failed parse pem-encoded CA certificates from %s", sslCA)
}
if sslCert != "" && sslKey != "" {
certPairs := make([]tls.Certificate, 0, 1)
keypair, err := tls.LoadX509KeyPair(sslCert, sslKey)
if err != nil {
return fmt.Errorf("failed to parse pem-encoded SSL cert %s or SSL key %s: %s",
sslCert, sslKey, err)
}
certPairs = append(certPairs, keypair)
tlsCfg.Certificates = certPairs
} else {
return fmt.Errorf("missing certificates. Cannot specify only SSL CA file")
}
tlsCfg.InsecureSkipVerify = *mysqlSSLSkipVerify || *tlsInsecureSkipVerify
return mysql.RegisterTLSConfig("custom", &tlsCfg)
}
func setTLSConfig(dsn string) (string, error) {
cfg, err := mysql.ParseDSN(dsn)
if err != nil {
return "", err
}
cfg.TLSConfig = "custom"
return cfg.FormatDSN(), nil
}
func init() {
prometheus.MustRegister(version.NewCollector("mysqld_exporter"))
}
func newHandler(cfg *webAuth, db *sql.DB, metrics collector.Metrics, scrapers []collector.Scraper, defaultGatherer bool, logger log.Logger) http.HandlerFunc {
var processing_lr, processing_mr, processing_hr uint32 = 0, 0, 0 // default value is already 0, but for extra clarity
return func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
query_collect := r.URL.Query().Get("collect[]")
switch query_collect {
case "custom_query.hr":
if !atomic.CompareAndSwapUint32(&processing_hr, 0, 1) {
level.Warn(logger).Log("msg", "Received metrics HR request while previous still in progress: returning 429 Too Many Requests")
http.Error(w, "429 Too Many Requests", http.StatusTooManyRequests)
return
}
defer atomic.StoreUint32(&processing_hr, 0)
case "custom_query.mr":
if !atomic.CompareAndSwapUint32(&processing_mr, 0, 1) {
level.Warn(logger).Log("msg", "Received metrics MR request while previous still in progress: returning 429 Too Many Requests")
http.Error(w, "429 Too Many Requests", http.StatusTooManyRequests)
return
}
defer atomic.StoreUint32(&processing_mr, 0)
case "custom_query.lr":
if !atomic.CompareAndSwapUint32(&processing_lr, 0, 1) {
level.Warn(logger).Log("msg", "Received metrics LR request while previous still in progress: returning 429 Too Many Requests")
http.Error(w, "429 Too Many Requests", http.StatusTooManyRequests)
return
}
defer atomic.StoreUint32(&processing_lr, 0)
}
defer func() {
level.Debug(logger).Log("msg", "Request elapsed time", "sinceStart", time.Since(start), "query_collect", query_collect)
}()
filteredScrapers := scrapers
params := r.URL.Query()["collect[]"]
// Use request context for cancellation when connection gets closed.
ctx := r.Context()
// If a timeout is configured via the Prometheus header, add it to the context.
if v := r.Header.Get("X-Prometheus-Scrape-Timeout-Seconds"); v != "" {
timeoutSeconds, err := strconv.ParseFloat(v, 64)
if err != nil {
level.Error(logger).Log("msg", "Failed to parse timeout from Prometheus header", "err", err)
} else {
if *timeoutOffset >= timeoutSeconds {
// Ignore timeout offset if it doesn't leave time to scrape.
level.Error(logger).Log("msg", "Timeout offset should be lower than prometheus scrape timeout", "offset", *timeoutOffset, "prometheus_scrape_timeout", timeoutSeconds)
} else {
// Subtract timeout offset from timeout.
timeoutSeconds -= *timeoutOffset
}
// Create new timeout context with request context as parent.
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, time.Duration(timeoutSeconds*float64(time.Second)))
defer cancel()
// Overwrite request with timeout context.
r = r.WithContext(ctx)
}
}
level.Debug(logger).Log("msg", "collect[] params", "params", strings.Join(params, ","))
// Check if we have some "collect[]" query parameters.
if len(params) > 0 {
filters := make(map[string]bool)
for _, param := range params {
filters[param] = true
}
filteredScrapers = nil
for _, scraper := range scrapers {
if filters[scraper.Name()] {
filteredScrapers = append(filteredScrapers, scraper)
}
}
}
// Copy db as local variable, so the pointer passed to newHandler doesn't get updated.
db := db
// If there is no global connection pool then create new.
var err error
if db == nil {
db, err = newDB(dsn)
if err != nil {
level.Error(logger).Log("msg", "Error opening connection to database", "error", err)
return
}
defer db.Close()
}
registry := prometheus.NewRegistry()
registry.MustRegister(collector.New(ctx, db, metrics, filteredScrapers, logger))
gatherers := prometheus.Gatherers{}
if defaultGatherer {
gatherers = append(gatherers, prometheus.DefaultGatherer)
}
gatherers = append(gatherers, registry)
// Delegate http serving to Prometheus client library, which will call collector.Collect.
h := promhttp.HandlerFor(gatherers, promhttp.HandlerOpts{
// mysqld_exporter has multiple collectors, if one fails,
// we still should report metrics from collectors that succeeded.
ErrorHandling: promhttp.ContinueOnError,
//ErrorLog: logger., TODO TS
})
if cfg.User != "" && cfg.Password != "" {
h = &basicAuthHandler{handler: h.ServeHTTP, user: cfg.User, password: cfg.Password}
}
h.ServeHTTP(w, r)
}
}
func main() {
// Generate ON/OFF flags for all scrapers.
scraperFlags := map[collector.Scraper]*bool{}
for scraper, enabledByDefault := range scrapers {
defaultOn := "false"
if enabledByDefault {
defaultOn = "true"
}
f := kingpin.Flag(
"collect."+scraper.Name(),
scraper.Help(),
).Default(defaultOn).Bool()
scraperFlags[scraper] = f
}
// Parse flags.
promlogConfig := &promlog.Config{}
flag.AddFlags(kingpin.CommandLine, promlogConfig)
kingpin.Version(version.Print("mysqld_exporter"))
kingpin.HelpFlag.Short('h')
kingpin.Parse()
logger := promlog.New(promlogConfig)
// landingPage contains the HTML served at '/'.
// TODO: Make this nicer and more informative.
var landingPage = []byte(`<html>
<head><title>MySQLd exporter</title></head>
<body>
<h1>MySQL 3-in-1 exporter</h1>
<ul>
<li><a href="` + *metricPath + `-hr">high-res metrics</a></li>
<li><a href="` + *metricPath + `-mr">medium-res metrics</a></li>
<li><a href="` + *metricPath + `-lr">low-res metrics</a></li>
</ul>
<h1>MySQL exporter</h1>
<ul>
<li><a href="` + *metricPath + `">all metrics</a></li>
</ul>
</body>
</html>
`)
level.Info(logger).Log("msg", "Starting mysqld_exporter", "version", version.Info())
level.Info(logger).Log("msg", "Build context", version.BuildContext())
dsn = os.Getenv("DATA_SOURCE_NAME")
if len(dsn) == 0 {
var err error
if dsn, err = parseMycnf(*configMycnf, logger); err != nil {
level.Error(logger).Log("msg", "Error parsing my.cnf", "file", *configMycnf, "err", err)
os.Exit(1)
}
}
// Setup extra params for the DSN, default to having a lock timeout.
dsnParams := []string{fmt.Sprintf(timeoutParam, *exporterLockTimeout)}
if *exporterLogSlowFilter {
dsnParams = append(dsnParams, sessionSettingsParam)
}
// The parseMycnf function will set the TLS config in case certificates are being defined in
// the config file. If the user also specified command line parameters, these parameters should
// override the ones from the cnf file.
if *mysqlSSLCAFile != "" || (*mysqlSSLCertFile != "" && *mysqlSSLKeyFile != "") {
if err := customizeTLS(*mysqlSSLCAFile, *mysqlSSLCertFile, *mysqlSSLKeyFile); err != nil {
level.Error(logger).Log("msg", "failed to register a custom TLS configuration for mysql dsn", "error", err)
}
var err error
dsn, err = setTLSConfig(dsn)
if err != nil {
level.Error(logger).Log("msg", "failed to register a custom TLS configuration for mysql dsn", "error", err)
os.Exit(1)
}
}
// This could be improved using the driver's DSN parse and config format functions but this is
// how upstream does it.
if strings.Contains(dsn, "?") {
dsn += "&"
} else {
dsn += "?"
}
dsn += strings.Join(dsnParams, "&")
// Open global connection pool if requested.
var db *sql.DB
var err error
if *exporterGlobalConnPool {
db, err = newDB(dsn)
if err != nil {
level.Error(logger).Log("msg", "Error opening connection to database", "error", err)
return
}
defer db.Close()
}
cfg := &webAuth{}
httpAuth := os.Getenv("HTTP_AUTH")
if httpAuth != "" {
data := strings.SplitN(httpAuth, ":", 2)
if len(data) != 2 || data[0] == "" || data[1] == "" {
level.Error(logger).Log("msg", "HTTP_AUTH should be formatted as user:password")
return
}
cfg.User = data[0]
cfg.Password = data[1]
}
if cfg.User != "" && cfg.Password != "" {
level.Info(logger).Log("msg", "HTTP basic authentication is enabled")
}
// Use default mux for /debug/vars and /debug/pprof
mux := http.DefaultServeMux
// Defines what to scrape in each resolution.
all, hr, mr, lr := enabledScrapers(scraperFlags)
// TODO: Remove later. It's here for backward compatibility. See: https://jira.percona.com/browse/PMM-2180.
mux.Handle(*metricPath+"-hr", newHandler(cfg, db, collector.NewMetrics("hr"), hr, true, logger))
mux.Handle(*metricPath+"-mr", newHandler(cfg, db, collector.NewMetrics("mr"), mr, false, logger))
mux.Handle(*metricPath+"-lr", newHandler(cfg, db, collector.NewMetrics("lr"), lr, false, logger))
// Handle all metrics on one endpoint.
mux.Handle(*metricPath, newHandler(cfg, db, collector.NewMetrics(""), all, false, logger))
// Log which scrapers are enabled.
if len(hr) > 0 {
level.Info(logger).Log("msg", "Enabled High Resolution scrapers:")
for _, scraper := range hr {
var v = fmt.Sprintf(" --collect.%s", scraper.Name())
level.Info(logger).Log("msg", v)
}
}
if len(mr) > 0 {
level.Info(logger).Log("msg", "Enabled Medium Resolution scrapers:")
for _, scraper := range mr {
var v = fmt.Sprintf(" --collect.%s", scraper.Name())
level.Info(logger).Log("msg", v)
}
}
if len(lr) > 0 {
level.Info(logger).Log("msg", "Enabled Low Resolution scrapers:")
for _, scraper := range lr {
var v = fmt.Sprintf(" --collect.%s", scraper.Name())
level.Info(logger).Log("msg", v)
}
}
if len(all) > 0 {
level.Info(logger).Log("msg", "Enabled Resolution Independent scrapers:")
for _, scraper := range all {
var v = fmt.Sprintf(" --collect.%s", scraper.Name())
level.Info(logger).Log("msg", v)
}
}
srv := &http.Server{
Addr: *listenAddress,
Handler: mux,
}
level.Info(logger).Log("msg", "Listening on", "address", *listenAddress)
if *webConfigFile != "" && *webConfig != "" {
level.Error(logger).Log("msg", "Should specify only one web-config file")
os.Exit(1)
}
webCfg := ""
if *webConfigFile != "" {
webCfg = *webConfigFile
}
if *webConfig != "" {
webCfg = *webConfig
}
if webCfg != "" {
// https
mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains")
w.Write(landingPage)
})
level.Error(logger).Log("error", web.ListenAndServe(srv, webCfg, logger))
} else {
// http
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write(landingPage)
})
level.Error(logger).Log("error", srv.ListenAndServe())
}
}
func enabledScrapers(scraperFlags map[collector.Scraper]*bool) (all, hr, mr, lr []collector.Scraper) {
for scraper, enabled := range scraperFlags {
if *collectAll || *enabled {
if _, ok := scrapers[scraper]; ok {
all = append(all, scraper)
}
if _, ok := scrapersHr[scraper]; ok {
hr = append(hr, scraper)
}
if _, ok := scrapersMr[scraper]; ok {
mr = append(mr, scraper)
}
if _, ok := scrapersLr[scraper]; ok {
lr = append(lr, scraper)
}
}
}
return all, hr, mr, lr
}
func newDB(dsn string) (*sql.DB, error) {
// Validate DSN, and open connection pool.
db, err := sql.Open("mysql", dsn)
if err != nil {
return nil, err
}
db.SetMaxOpenConns(*exporterMaxOpenConns)
db.SetMaxIdleConns(*exporterMaxIdleConns)
db.SetConnMaxLifetime(*exporterConnMaxLifetime)
return db, nil
}