forked from kbudde/rabbitmq_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
90 lines (79 loc) · 2.3 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
package main
import (
"bytes"
"net/http"
"os"
"strings"
log "github.com/Sirupsen/logrus"
"github.com/prometheus/client_golang/prometheus"
)
const defaultLogLevel = log.InfoLevel
func initLogger() {
log.SetLevel(getLogLevel())
if strings.ToUpper(config.OutputFormat) == "JSON" {
log.SetFormatter(&log.JSONFormatter{})
} else {
// The TextFormatter is default, you don't actually have to do this.
log.SetFormatter(&log.TextFormatter{})
}
}
func main() {
initConfig()
initLogger()
initClient()
exporter := newExporter()
prometheus.MustRegister(exporter)
http.Handle("/metrics", prometheus.Handler())
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(`<html>
<head><title>RabbitMQ Exporter</title></head>
<body>
<h1>RabbitMQ Exporter</h1>
<p><a href='/metrics'>Metrics</a></p>
</body>
</html>`))
})
log.WithFields(log.Fields{
"VERSION": Version,
"REVISION": Revision,
"BRANCH": Branch,
"BUILD_DATE": BuildDate,
// "RABBIT_PASSWORD": config.RABBIT_PASSWORD,
}).Info("Starting RabbitMQ exporter")
log.WithFields(log.Fields{
"PUBLISH_ADDR": config.PublishAddr,
"PUBLISH_PORT": config.PublishPort,
"RABBIT_URL": config.RabbitURL,
"RABBIT_USER": config.RabbitUsername,
"OUTPUT_FORMAT": config.OutputFormat,
"RABBIT_CAPABILITIES": formatCapabilities(config.RabbitCapabilities),
"RABBIT_EXPORTERS": config.EnabledExporters,
"CAFILE": config.CAFile,
"SKIPVERIFY": config.InsecureSkipVerify,
"SKIP_QUEUES": config.SkipQueues.String(),
"INCLUDE_QUEUES": config.IncludeQueues,
"RABBIT_TIMEOUT": config.Timeout,
// "RABBIT_PASSWORD": config.RABBIT_PASSWORD,
}).Info("Active Configuration")
log.Fatal(http.ListenAndServe(config.PublishAddr+":"+config.PublishPort, nil))
}
func getLogLevel() log.Level {
lvl := strings.ToLower(os.Getenv("LOG_LEVEL"))
level, err := log.ParseLevel(lvl)
if err != nil {
level = defaultLogLevel
}
return level
}
func formatCapabilities(caps rabbitCapabilitySet) string {
var buffer bytes.Buffer
first := true
for k := range caps {
if !first {
buffer.WriteString(",")
}
first = false
buffer.WriteString(string(k))
}
return buffer.String()
}