forked from snapbug/memcache_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
218 lines (196 loc) · 5.81 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
package main
import (
"flag"
"fmt"
"net/http"
"strconv"
"sync"
"github.com/Snapbug/gomemcache/memcache"
"github.com/golang/glog"
"github.com/prometheus/client_golang/prometheus"
)
const (
namespace = "memcache"
)
var (
cacheOperations = []string{"get", "delete", "incr", "decr", "cas", "touch"}
cacheStatuses = []string{"hits", "misses"}
usageTimes = []string{"curr", "total"}
usageResources = []string{"items", "connections"}
bytesDirections = []string{"read", "written"}
removalsStatuses = []string{"expired", "evicted"}
)
// Exporter collects metrics from a set of memcache servers.
type Exporter struct {
mutex sync.RWMutex
mc *memcache.Client
up prometheus.Gauge
uptime prometheus.Counter
cache *prometheus.CounterVec
usage *prometheus.GaugeVec
bytes *prometheus.CounterVec
removals *prometheus.CounterVec
}
// NewExporter returns an initialized exporter
func NewExporter(server string) *Exporter {
return &Exporter{
mc: memcache.New(server),
up: prometheus.NewGauge(
prometheus.GaugeOpts{
Name: "up",
Namespace: namespace,
Help: "Are the servers up.",
ConstLabels: prometheus.Labels{"server": server},
},
),
uptime: prometheus.NewCounter(
prometheus.CounterOpts{
Name: "uptime",
Namespace: namespace,
Help: "The uptime of the server.",
ConstLabels: prometheus.Labels{"server": server},
},
),
cache: prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "cache",
Namespace: namespace,
Help: "The cache hits/misses broken down by command (get, set, etc.).",
ConstLabels: prometheus.Labels{"server": server},
},
[]string{"command", "status"},
),
usage: prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "usage",
Namespace: namespace,
Help: "Details the resource usage (items/connections) of the server, by time (current/total).",
ConstLabels: prometheus.Labels{"server": server},
},
[]string{"time", "resource"},
),
bytes: prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "bytes",
Namespace: namespace,
Help: "The bytes sent/received by the server.",
ConstLabels: prometheus.Labels{"server": server},
},
[]string{"direction"},
),
removals: prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "removal",
Namespace: namespace,
Help: "Number of items that have been evicted/expired (status), and if the were fetched ever or not.",
ConstLabels: prometheus.Labels{"server": server},
},
[]string{"status", "fetched"},
),
}
}
// Describe describes all the metrics exported by the memcache exporter. It
// implements prometheus.Collector.
func (e *Exporter) Describe(ch chan<- *prometheus.Desc) {
ch <- e.up.Desc()
ch <- e.uptime.Desc()
e.cache.Describe(ch)
e.usage.Describe(ch)
e.bytes.Describe(ch)
e.removals.Describe(ch)
}
// Collect fetches the statistics from the configured memcache servers, and
// delivers them as prometheus metrics. It implements prometheus.Collector.
func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
// prevent concurrent metric collections
e.mutex.Lock()
defer e.mutex.Unlock()
e.cache.Reset()
e.usage.Reset()
e.bytes.Reset()
e.removals.Reset()
stats, err := e.mc.Stats()
if err != nil {
glog.Infof("Failed to collect stats from memcache: %s", err)
return
}
e.up.Set(1)
for server, _ := range stats {
m, err := strconv.ParseUint(stats[server]["uptime"], 10, 64)
if err != nil {
e.uptime.Set(0)
} else {
e.uptime.Set(float64(m))
}
for _, op := range cacheOperations {
for _, st := range cacheStatuses {
m, err := strconv.ParseUint(stats[server][fmt.Sprintf("%s_%s", op, st)], 10, 64)
if err != nil {
e.cache.WithLabelValues(op, st).Set(0)
} else {
e.cache.WithLabelValues(op, st).Set(float64(m))
}
}
}
for _, t := range usageTimes {
for _, r := range usageResources {
m, err := strconv.ParseUint(stats[server][fmt.Sprintf("%s_%s", t, r)], 10, 64)
if err != nil {
e.usage.WithLabelValues(t, r).Set(0)
} else {
e.usage.WithLabelValues(t, r).Set(float64(m))
}
}
}
for _, dir := range bytesDirections {
m, err := strconv.ParseUint(stats[server][fmt.Sprintf("bytes_%s", dir)], 10, 64)
if err != nil {
e.bytes.WithLabelValues(dir).Set(0)
} else {
e.bytes.WithLabelValues(dir).Set(float64(m))
}
}
for _, st := range removalsStatuses {
m, err := strconv.ParseUint(stats[server][fmt.Sprintf("%s_unfetched", st)], 10, 64)
if err != nil {
e.removals.WithLabelValues(st, "unfetched").Set(0)
} else {
e.removals.WithLabelValues(st, "unfetched").Set(float64(m))
}
}
m, err = strconv.ParseUint(stats[server]["evicted"], 10, 64)
if err != nil {
e.removals.WithLabelValues("evicted", "fetched").Set(0)
} else {
e.removals.WithLabelValues("evicted", "fetched").Set(float64(m))
}
}
ch <- e.up
ch <- e.uptime
e.cache.Collect(ch)
e.usage.Collect(ch)
e.bytes.Collect(ch)
e.removals.Collect(ch)
}
func main() {
var (
listenAddress = flag.String("web.listen-address", ":9106", "Address to listen on for web interface and telemetry.")
metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.")
)
flag.Parse()
for _, server := range flag.Args() {
exporter := NewExporter(server)
prometheus.MustRegister(exporter)
}
http.Handle(*metricsPath, prometheus.Handler())
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(`<html>
<head><title>Memcached Exporter</title></head>
<body>
<h1>Memcached Exporter</h1>
<p><a href='` + *metricsPath + `'>Metrics</a></p>
</body>
</html>`))
})
glog.Fatal(http.ListenAndServe(*listenAddress, nil))
}