forked from mdlayher/prombolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
statscollector.go
348 lines (297 loc) · 8.34 KB
/
statscollector.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
package prombolt
import (
bolt "go.etcd.io/bbolt"
"github.com/prometheus/client_golang/prometheus"
)
var _ prometheus.Collector = &statsCollector{}
// A statsCollector is a prometheus.Collector for Bolt database and transaction
// statistics.
type statsCollector struct {
name string
ss statser
FreelistFreePages *prometheus.Desc
FreelistPendingPages *prometheus.Desc
FreelistFreePageAllocatedBytes *prometheus.Desc
FreelistInUseBytes *prometheus.Desc
ReadTxTotal *prometheus.Desc
OpenReadTx *prometheus.Desc
TxPagesAllocatedTotal *prometheus.Desc
TxPagesAllocatedBytesTotal *prometheus.Desc
TxCursorsTotal *prometheus.Desc
TxNodesAllocatedTotal *prometheus.Desc
TxNodesDereferencedTotal *prometheus.Desc
TxNodeRebalancesTotal *prometheus.Desc
TxNodeRebalanceSecondsTotal *prometheus.Desc
TxNodesSplitTotal *prometheus.Desc
TxNodesSpilledTotal *prometheus.Desc
TxNodesSpilledSecondsTotal *prometheus.Desc
TxWritesTotal *prometheus.Desc
TxWriteSecondsTotal *prometheus.Desc
}
var _ statser = &bolt.DB{}
// A statser is a type that can produce a bolt.Stats struct.
type statser interface {
Stats() bolt.Stats
}
// newStatsCollector creates a new statsCollector with the specified name and
// statser for retrieving statistics.
func newStatsCollector(name string, ss statser) *statsCollector {
const (
dbSubsystem = "db"
txSubsystem = "tx"
)
var (
labels = []string{"database"}
)
return &statsCollector{
name: name,
ss: ss,
FreelistFreePages: prometheus.NewDesc(
prometheus.BuildFQName(namespace, dbSubsystem, "freelist_free_pages"),
"Number of free pages on the freelist.",
labels,
nil,
),
FreelistPendingPages: prometheus.NewDesc(
prometheus.BuildFQName(namespace, dbSubsystem, "freelist_pending_pages"),
"Number of pending pages on the freelist.",
labels,
nil,
),
FreelistFreePageAllocatedBytes: prometheus.NewDesc(
prometheus.BuildFQName(namespace, dbSubsystem, "freelist_free_page_allocated_bytes"),
"Number of bytes allocated in free pages on the freelist.",
labels,
nil,
),
FreelistInUseBytes: prometheus.NewDesc(
prometheus.BuildFQName(namespace, dbSubsystem, "freelist_in_use_bytes"),
"Number of bytes in use by the freelist.",
labels,
nil,
),
ReadTxTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, dbSubsystem, "read_tx_total"),
"Total number of started read transactions for the database.",
labels,
nil,
),
OpenReadTx: prometheus.NewDesc(
prometheus.BuildFQName(namespace, dbSubsystem, "open_read_tx"),
"Number of currently open read-only transactions for the database.",
labels,
nil,
),
TxPagesAllocatedTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "pages_allocated_total"),
"Total number of transaction page allocations.",
labels,
nil,
),
TxPagesAllocatedBytesTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "pages_allocated_bytes_total"),
"Total number of bytes allocated for transaction pages.",
labels,
nil,
),
TxCursorsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "cursors_total"),
"Total number of cursors created by transactions",
labels,
nil,
),
TxNodesAllocatedTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "nodes_allocated_total"),
"Total number of nodes allocated by transactions.",
labels,
nil,
),
TxNodesDereferencedTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "nodes_dereferenced_total"),
"Total number of nodes dereferenced by transactions.",
labels,
nil,
),
TxNodeRebalancesTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "node_rebalances_total"),
"Total number of node rebalances by transactions.",
labels,
nil,
),
TxNodeRebalanceSecondsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "node_rebalance_seconds_total"),
"Total amount of time in seconds spent rebalancing nodes by transactions",
labels,
nil,
),
TxNodesSplitTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "nodes_split_total"),
"Total number of nodes split by transactions.",
labels,
nil,
),
TxNodesSpilledTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "nodes_spilled_total"),
"Total number of nodes spilled by transactions.",
labels,
nil,
),
TxNodesSpilledSecondsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "nodes_spilled_seconds_total"),
"Total amount of time in seconds spent spilling nodes by transactions.",
labels,
nil,
),
TxWritesTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "writes_total"),
"Total number of writes to disk performed by transactions.",
labels,
nil,
),
TxWriteSecondsTotal: prometheus.NewDesc(
prometheus.BuildFQName(namespace, txSubsystem, "write_seconds_total"),
"Total amount of time in seconds spent writing to disk by transactions.",
labels,
nil,
),
}
}
var _ prometheus.Collector = &statsCollector{}
// Describe implements the prometheus.Collector interface.
func (c *statsCollector) Describe(ch chan<- *prometheus.Desc) {
ds := []*prometheus.Desc{
c.FreelistFreePages,
c.FreelistPendingPages,
c.FreelistFreePageAllocatedBytes,
c.FreelistInUseBytes,
c.ReadTxTotal,
c.OpenReadTx,
c.TxPagesAllocatedTotal,
c.TxPagesAllocatedBytesTotal,
c.TxCursorsTotal,
c.TxNodesAllocatedTotal,
c.TxNodesDereferencedTotal,
c.TxNodeRebalancesTotal,
c.TxNodeRebalanceSecondsTotal,
c.TxNodesSplitTotal,
c.TxNodesSpilledTotal,
c.TxNodesSpilledSecondsTotal,
c.TxWritesTotal,
c.TxWriteSecondsTotal,
}
for _, d := range ds {
ch <- d
}
}
// Collect implements the prometheus.Collector interface.
func (c *statsCollector) Collect(ch chan<- prometheus.Metric) {
s := c.ss.Stats()
ch <- prometheus.MustNewConstMetric(
c.FreelistFreePages,
prometheus.GaugeValue,
float64(s.FreePageN),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.FreelistPendingPages,
prometheus.GaugeValue,
float64(s.PendingPageN),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.FreelistFreePageAllocatedBytes,
prometheus.GaugeValue,
float64(s.FreeAlloc),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.FreelistInUseBytes,
prometheus.GaugeValue,
float64(s.FreelistInuse),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.ReadTxTotal,
prometheus.CounterValue,
float64(s.TxN),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.OpenReadTx,
prometheus.GaugeValue,
float64(s.OpenTxN),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxPagesAllocatedTotal,
prometheus.CounterValue,
float64(s.TxStats.PageCount),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxPagesAllocatedBytesTotal,
prometheus.CounterValue,
float64(s.TxStats.PageAlloc),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxCursorsTotal,
prometheus.CounterValue,
float64(s.TxStats.CursorCount),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxNodesAllocatedTotal,
prometheus.CounterValue,
float64(s.TxStats.NodeCount),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxNodesDereferencedTotal,
prometheus.CounterValue,
float64(s.TxStats.NodeDeref),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxNodeRebalancesTotal,
prometheus.CounterValue,
float64(s.TxStats.Rebalance),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxNodeRebalanceSecondsTotal,
prometheus.CounterValue,
s.TxStats.RebalanceTime.Seconds(),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxNodesSplitTotal,
prometheus.CounterValue,
float64(s.TxStats.Split),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxNodesSpilledTotal,
prometheus.CounterValue,
float64(s.TxStats.Spill),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxNodesSpilledSecondsTotal,
prometheus.CounterValue,
s.TxStats.SpillTime.Seconds(),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxWritesTotal,
prometheus.CounterValue,
float64(s.TxStats.Write),
c.name,
)
ch <- prometheus.MustNewConstMetric(
c.TxWriteSecondsTotal,
prometheus.CounterValue,
s.TxStats.WriteTime.Seconds(),
c.name,
)
}