forked from kbudde/rabbitmq_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exporter_connections.go
102 lines (85 loc) · 3.08 KB
/
exporter_connections.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
package main
import (
"context"
"github.com/prometheus/client_golang/prometheus"
)
func init() {
RegisterExporter("connections", newExporterConnections)
}
var (
connectionLabels = []string{"cluster", "vhost", "node", "peer_host", "user", "self"}
connectionLabelsStateMetric = []string{"cluster", "vhost", "node", "peer_host", "user", "state", "self"}
connectionLabelKeys = []string{"vhost", "node", "peer_host", "user", "state", "node"}
connectionGaugeVec = map[string]*prometheus.GaugeVec{
"channels": newGaugeVec("connection_channels", "number of channels in use", connectionLabels),
"recv_oct": newGaugeVec("connection_received_bytes", "received bytes", connectionLabels),
"recv_cnt": newGaugeVec("connection_received_packets", "received packets", connectionLabels),
"send_oct": newGaugeVec("connection_send_bytes", "send bytes", connectionLabels),
"send_cnt": newGaugeVec("connection_send_packets", "send packets", connectionLabels),
"send_pend": newGaugeVec("connection_send_pending", "Send queue size", connectionLabels),
}
)
type exporterConnections struct {
connectionMetricsG map[string]*prometheus.GaugeVec
stateMetric *prometheus.GaugeVec
}
func newExporterConnections() Exporter {
connectionGaugeVecActual := connectionGaugeVec
if len(config.ExcludeMetrics) > 0 {
for _, metric := range config.ExcludeMetrics {
if connectionGaugeVecActual[metric] != nil {
delete(connectionGaugeVecActual, metric)
}
}
}
return exporterConnections{
connectionMetricsG: connectionGaugeVecActual,
stateMetric: newGaugeVec("connection_status", "Number of connections in a certain state aggregated per label combination.", connectionLabelsStateMetric),
}
}
func (e exporterConnections) Collect(ctx context.Context, ch chan<- prometheus.Metric) error {
rabbitConnectionResponses, err := getStatsInfo(config, "connections", connectionLabelKeys)
if err != nil {
return err
}
for _, gauge := range e.connectionMetricsG {
gauge.Reset()
}
e.stateMetric.Reset()
selfNode := ""
if n, ok := ctx.Value(nodeName).(string); ok {
selfNode = n
}
cluster := ""
if n, ok := ctx.Value(clusterName).(string); ok {
cluster = n
}
for key, gauge := range e.connectionMetricsG {
for _, connD := range rabbitConnectionResponses {
if value, ok := connD.metrics[key]; ok {
self := "0"
if connD.labels["node"] == selfNode {
self = "1"
}
gauge.WithLabelValues(cluster, connD.labels["vhost"], connD.labels["node"], connD.labels["peer_host"], connD.labels["user"], self).Add(value)
}
}
}
for _, connD := range rabbitConnectionResponses {
self := "0"
if connD.labels["node"] == selfNode {
self = "1"
}
e.stateMetric.WithLabelValues(cluster, connD.labels["vhost"], connD.labels["node"], connD.labels["peer_host"], connD.labels["user"], connD.labels["state"], self).Add(1)
}
for _, gauge := range e.connectionMetricsG {
gauge.Collect(ch)
}
e.stateMetric.Collect(ch)
return nil
}
func (e exporterConnections) Describe(ch chan<- *prometheus.Desc) {
for _, nodeMetric := range e.connectionMetricsG {
nodeMetric.Describe(ch)
}
}