This repository has been archived by the owner on Aug 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
devicecollector.go
408 lines (349 loc) · 10.6 KB
/
devicecollector.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
package unifiexporter
import (
"log"
"time"
"github.com/mdlayher/unifi"
"github.com/prometheus/client_golang/prometheus"
)
// A DeviceCollector is a Prometheus collector for metrics regarding Ubiquiti
// UniFi devices.
type DeviceCollector struct {
Devices *prometheus.Desc
AdoptedDevices *prometheus.Desc
UnadoptedDevices *prometheus.Desc
UptimeSecondsTotal *prometheus.Desc
WirelessReceivedBytesTotal *prometheus.Desc
WirelessTransmittedBytesTotal *prometheus.Desc
WirelessReceivedPacketsTotal *prometheus.Desc
WirelessTransmittedPacketsTotal *prometheus.Desc
WirelessTransmittedDroppedTotal *prometheus.Desc
WiredReceivedBytesTotal *prometheus.Desc
WiredTransmittedBytesTotal *prometheus.Desc
WiredReceivedPacketsTotal *prometheus.Desc
WiredTransmittedPacketsTotal *prometheus.Desc
Stations *prometheus.Desc
UserStations *prometheus.Desc
GuestStations *prometheus.Desc
c *unifi.Client
sites []*unifi.Site
}
// Verify that the Exporter implements the collector interface.
var _ collector = &DeviceCollector{}
// NewDeviceCollector creates a new DeviceCollector which collects metrics for
// a specified site.
func NewDeviceCollector(c *unifi.Client, sites []*unifi.Site) *DeviceCollector {
const (
subsystem = "devices"
)
var (
labelsSiteOnly = []string{"site"}
labelsDevice = []string{"site", "id", "mac", "name"}
labelsDeviceStations = []string{"site", "id", "mac", "name", "interface", "radio"}
)
return &DeviceCollector{
Devices: prometheus.NewDesc(
// Subsystem is used as name so we get "unifi_devices"
prometheus.BuildFQName(namespace, "", subsystem),
"Total number of devices",
labelsSiteOnly,
nil,
),
AdoptedDevices: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "adopted"),
"Number of devices which are adopted",
labelsSiteOnly,
nil,
),
UnadoptedDevices: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "unadopted"),
"Number of devices which are not adopted",
labelsSiteOnly,
nil,
),
UptimeSecondsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "uptime_seconds_total"),
"Device uptime in seconds",
labelsDevice,
nil,
),
WirelessReceivedBytesTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wireless_received_bytes_total"),
"Number of bytes received wirelessly by devices",
labelsDevice,
nil,
),
WirelessTransmittedBytesTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wireless_transmitted_bytes_total"),
"Number of bytes transmitted wirelessly by devices",
labelsDevice,
nil,
),
WirelessReceivedPacketsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wireless_received_packets_total"),
"Number of packets received wirelessly by devices",
labelsDevice,
nil,
),
WirelessTransmittedPacketsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wireless_transmitted_packets_total"),
"Number of packets transmitted wirelessly by devices",
labelsDevice,
nil,
),
WirelessTransmittedDroppedTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wireless_transmitted_packets_dropped_total"),
"Number of packets which are dropped on wireless transmission by devices",
labelsDevice,
nil,
),
WiredReceivedBytesTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wired_received_bytes_total"),
"Number of bytes received using wired interface by devices",
labelsDevice,
nil,
),
WiredTransmittedBytesTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wired_transmitted_bytes_total"),
"Number of bytes transmitted using wired interface by devices",
labelsDevice,
nil,
),
WiredReceivedPacketsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wired_received_packets_total"),
"Number of packets received using wired interface by devices",
labelsDevice,
nil,
),
WiredTransmittedPacketsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "wired_transmitted_packets_total"),
"Number of packets transmitted using wired interface by devices",
labelsDevice,
nil,
),
Stations: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "stations"),
"Total number of stations (clients) connected to devices",
labelsDeviceStations,
nil,
),
UserStations: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "stations_user"),
"Number of user stations (private clients) connected to devices",
labelsDeviceStations,
nil,
),
GuestStations: prometheus.NewDesc(
prometheus.BuildFQName(namespace, subsystem, "stations_guest"),
"Number of guest stations (public clients) connected to devices",
labelsDeviceStations,
nil,
),
c: c,
sites: sites,
}
}
// collect begins a metrics collection task for all metrics related to UniFi
// devices.
func (c *DeviceCollector) collect(ch chan<- prometheus.Metric) (*prometheus.Desc, error) {
for _, s := range c.sites {
devices, err := c.c.Devices(s.Name)
if err != nil {
return c.Devices, err
}
ch <- prometheus.MustNewConstMetric(
c.Devices,
prometheus.GaugeValue,
float64(len(devices)),
s.Description,
)
c.collectDeviceAdoptions(ch, s.Description, devices)
c.collectDeviceUptime(ch, s.Description, devices)
c.collectDeviceBytes(ch, s.Description, devices)
c.collectDeviceStations(ch, s.Description, devices)
}
return nil, nil
}
// collectDeviceAdoptions collects counts for number of adopted and unadopted
// UniFi devices.
func (c *DeviceCollector) collectDeviceAdoptions(ch chan<- prometheus.Metric, siteLabel string, devices []*unifi.Device) {
var adopted, unadopted int
for _, d := range devices {
if d.Adopted {
adopted++
} else {
unadopted++
}
}
ch <- prometheus.MustNewConstMetric(
c.AdoptedDevices,
prometheus.GaugeValue,
float64(adopted),
siteLabel,
)
ch <- prometheus.MustNewConstMetric(
c.UnadoptedDevices,
prometheus.GaugeValue,
float64(unadopted),
siteLabel,
)
}
// collectDeviceUptime collects device uptime for UniFi devices.
func (c *DeviceCollector) collectDeviceUptime(ch chan<- prometheus.Metric, siteLabel string, devices []*unifi.Device) {
for _, d := range devices {
labels := []string{
siteLabel,
d.ID,
d.NICs[0].MAC.String(),
d.Name,
}
ch <- prometheus.MustNewConstMetric(
c.UptimeSecondsTotal,
prometheus.CounterValue,
float64(d.Uptime/time.Second),
labels...,
)
}
}
// collectDeviceBytes collects receive and transmit byte counts for UniFi devices.
func (c *DeviceCollector) collectDeviceBytes(ch chan<- prometheus.Metric, siteLabel string, devices []*unifi.Device) {
for _, d := range devices {
labels := []string{
siteLabel,
d.ID,
d.NICs[0].MAC.String(),
d.Name,
}
ch <- prometheus.MustNewConstMetric(
c.WirelessReceivedBytesTotal,
prometheus.CounterValue,
float64(d.Stats.All.ReceiveBytes),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WirelessTransmittedBytesTotal,
prometheus.CounterValue,
float64(d.Stats.All.TransmitBytes),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WirelessReceivedPacketsTotal,
prometheus.CounterValue,
float64(d.Stats.All.ReceivePackets),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WirelessTransmittedPacketsTotal,
prometheus.CounterValue,
float64(d.Stats.All.TransmitPackets),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WirelessTransmittedDroppedTotal,
prometheus.CounterValue,
float64(d.Stats.All.TransmitDropped),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WiredReceivedBytesTotal,
prometheus.CounterValue,
float64(d.Stats.Uplink.ReceiveBytes),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WiredTransmittedBytesTotal,
prometheus.CounterValue,
float64(d.Stats.Uplink.TransmitBytes),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WiredReceivedPacketsTotal,
prometheus.CounterValue,
float64(d.Stats.Uplink.ReceivePackets),
labels...,
)
ch <- prometheus.MustNewConstMetric(
c.WiredTransmittedPacketsTotal,
prometheus.CounterValue,
float64(d.Stats.Uplink.TransmitPackets),
labels...,
)
}
}
// collectDeviceStations collects station counts for UniFi devices.
func (c *DeviceCollector) collectDeviceStations(ch chan<- prometheus.Metric, siteLabel string, devices []*unifi.Device) {
for _, d := range devices {
labels := []string{
siteLabel,
d.ID,
d.NICs[0].MAC.String(),
d.Name,
}
for _, r := range d.Radios {
// Since the radio name and type will be different for each
// radio, we copy the original labels slice and append, to avoid
// mutating it
llabels := make([]string, len(labels))
copy(llabels, labels)
llabels = append(llabels, r.Name, r.Radio)
ch <- prometheus.MustNewConstMetric(
c.Stations,
prometheus.GaugeValue,
float64(r.Stats.NumberStations),
llabels...,
)
ch <- prometheus.MustNewConstMetric(
c.UserStations,
prometheus.GaugeValue,
float64(r.Stats.NumberUserStations),
llabels...,
)
ch <- prometheus.MustNewConstMetric(
c.GuestStations,
prometheus.GaugeValue,
float64(r.Stats.NumberGuestStations),
llabels...,
)
}
}
}
// Describe sends the descriptors of each metric over to the provided channel.
// The corresponding metric values are sent separately.
func (c *DeviceCollector) Describe(ch chan<- *prometheus.Desc) {
ds := []*prometheus.Desc{
c.Devices,
c.AdoptedDevices,
c.UnadoptedDevices,
c.UptimeSecondsTotal,
c.WirelessReceivedBytesTotal,
c.WirelessTransmittedBytesTotal,
c.WirelessReceivedPacketsTotal,
c.WirelessTransmittedPacketsTotal,
c.WirelessTransmittedDroppedTotal,
c.WiredReceivedBytesTotal,
c.WiredTransmittedBytesTotal,
c.WiredReceivedPacketsTotal,
c.WiredTransmittedPacketsTotal,
c.Stations,
c.UserStations,
c.GuestStations,
}
for _, d := range ds {
ch <- d
}
}
// Collect is the same as CollectError, but ignores any errors which occur.
// Collect exists to satisfy the prometheus.Collector interface.
func (c *DeviceCollector) Collect(ch chan<- prometheus.Metric) {
_ = c.CollectError(ch)
}
// CollectError sends the metric values for each metric pertaining to the global
// cluster usage over to the provided prometheus Metric channel, returning any
// errors which occur.
func (c *DeviceCollector) CollectError(ch chan<- prometheus.Metric) error {
if desc, err := c.collect(ch); err != nil {
ch <- prometheus.NewInvalidMetric(desc, err)
log.Printf("[ERROR] failed collecting device metric %v: %v", desc, err)
return err
}
return nil
}