forked from kbudde/rabbitmq_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrabbitClient.go
107 lines (84 loc) · 2.64 KB
/
rabbitClient.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
package main
import (
"crypto/tls"
"crypto/x509"
"errors"
"io/ioutil"
"net/http"
"time"
log "github.com/Sirupsen/logrus"
)
var client = &http.Client{Timeout: 15 * time.Second} //default client for test. Client is initialized in initClient()
func initClient() {
roots := x509.NewCertPool()
if data, err := ioutil.ReadFile(config.CAFile); err == nil {
if !roots.AppendCertsFromPEM(data) {
log.WithField("filename", config.CAFile).Error("Adding certificate to rootCAs failed")
}
} else {
log.Info("Using default certificate pool")
}
tr := &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: config.InsecureSkipVerify,
RootCAs: roots,
},
}
client = &http.Client{
Transport: tr,
Timeout: time.Duration(config.Timeout) * time.Second,
}
}
func loadMetrics(config rabbitExporterConfig, endpoint string) (RabbitReply, error) {
var args string
enabled, exists := config.RabbitCapabilities[rabbitCapNoSort]
if enabled && exists {
args = "?sort="
}
req, err := http.NewRequest("GET", config.RabbitURL+"/api/"+endpoint+args, nil)
if err != nil {
log.WithFields(log.Fields{"error": err, "host": config.RabbitURL}).Error("Error while constructing rabbitHost request")
return nil, errors.New("Error while constructing rabbitHost request")
}
req.SetBasicAuth(config.RabbitUsername, config.RabbitPassword)
req.Header.Add("Accept", acceptContentType(config))
resp, err := client.Do(req)
if err != nil || resp == nil || resp.StatusCode != 200 {
status := 0
if resp != nil {
status = resp.StatusCode
}
log.WithFields(log.Fields{"error": err, "host": config.RabbitURL, "statusCode": status}).Error("Error while retrieving data from rabbitHost")
return nil, errors.New("Error while retrieving data from rabbitHost")
}
body, err := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if err != nil {
return nil, err
}
log.WithFields(log.Fields{"body": string(body), "endpoint": endpoint}).Debug("Metrics loaded")
return MakeReply(config, body)
}
func getStatsInfo(config rabbitExporterConfig, apiEndpoint string, labels []string) ([]StatsInfo, error) {
var q []StatsInfo
reply, err := loadMetrics(config, apiEndpoint)
if err != nil {
return q, err
}
q = reply.MakeStatsInfo(labels)
return q, nil
}
func getMetricMap(config rabbitExporterConfig, apiEndpoint string) (MetricMap, error) {
var overview MetricMap
reply, err := loadMetrics(config, apiEndpoint)
if err != nil {
return overview, err
}
return reply.MakeMap(), nil
}
func acceptContentType(config rabbitExporterConfig) string {
if isCapEnabled(config, rabbitCapBert) {
return "application/bert"
}
return "application/json"
}