90
90
counter ("client_write_error" , "client write error" ),
91
91
counter ("client_write_success" , "client write success" ),
92
92
counter ("client_write_timeout" , "client write timeout" ),
93
- counter ("defrag_reads" , "defrag reads" ),
94
- counter ("defrag_writes" , "defrag writes" ),
95
93
counter ("evicted_objects" , "evicted objects" ),
96
94
counter ("expired_objects" , "expired objects" ),
97
95
counter ("fail_generation" , "fail generation" ),
@@ -166,7 +164,6 @@ var (
166
164
counter ("xdr_write_success" , "xdr write success" ),
167
165
counter ("xdr_write_timeout" , "xdr write timeout" ),
168
166
gauge ("available_bin_names" , "available bin names" ),
169
- // broken gauge("defrag_q", "defrag queue"),
170
167
gauge ("device_available_pct" , "device available pct" ),
171
168
gauge ("device_compression_ratio" , "device compression ratio" ),
172
169
gauge ("device_free_pct" , "device free pct" ),
@@ -216,7 +213,6 @@ var (
216
213
gauge ("prole_objects" , "prole objects" ),
217
214
gauge ("prole_tombstones" , "prole tombstones" ),
218
215
gauge ("replication-factor" , "replication factor" ),
219
- // broken gauge("shadow_write_q", "shadow write queue"),
220
216
gauge ("stop_writes" , "stop writes" ),
221
217
gauge ("stop-writes-pct" , "stop writes pct" ),
222
218
gauge ("tombstones" , "tombstones" ),
@@ -225,10 +221,17 @@ var (
225
221
gauge ("dead_partitions" , "dead partitions" ),
226
222
gauge ("unavailable_partitions" , "unavailable partitions" ),
227
223
gauge ("rack-id" , "rack id" ),
228
- // gauge("write_q", "write queue"),
229
224
// device-level stats don't appear to work
230
225
// and this plugin thinks "storage-engine.device[0].write_q" is malformed.
231
226
}
227
+ NamespaceStorageMetrics = []metric {
228
+ counter ("defrag_reads" , "defrag reads" ),
229
+ counter ("defrag_writes" , "defrag writes" ),
230
+ gauge ("shadow_write_q" , "shadow write queue" ),
231
+ gauge ("defrag_q" , "defrag queue" ),
232
+ gauge ("write_q" , "write queue" ),
233
+
234
+ }
232
235
)
233
236
234
237
type nsCollector cmetrics
@@ -246,6 +249,18 @@ func newNSCollector() nsCollector {
246
249
),
247
250
}
248
251
}
252
+ for _ , m := range NamespaceStorageMetrics {
253
+ ns [m .aeroName ] = cmetric {
254
+ typ : m .typ ,
255
+ desc : prometheus .NewDesc (
256
+ promkey (systemNamespace , m .aeroName ),
257
+ m .desc ,
258
+ []string {"namespace" , "mount" },
259
+ nil ,
260
+ ),
261
+ }
262
+ }
263
+
249
264
return ns
250
265
}
251
266
@@ -255,6 +270,45 @@ func (nc nsCollector) describe(ch chan<- *prometheus.Desc) {
255
270
}
256
271
}
257
272
273
+ func (nc nsCollector ) parseStorage (s string , d string ) (string , error ) {
274
+ r := ""
275
+ for _ , l := range strings .Split (s , ";" ) {
276
+ for _ , v := range strings .Split (l , ":" ) {
277
+ kv := strings .SplitN (v , "=" , 2 )
278
+ if len (kv ) > 1 {
279
+ if strings .HasPrefix (kv [0 ], d ) {
280
+ //todo: optimize
281
+ kv [0 ] = strings .Replace (kv [0 ] + "." , d , "" , 1 )
282
+ kv [0 ] = strings .Replace (kv [0 ], "." , "" , - 1 )
283
+ }
284
+ r += kv [0 ] + "=" + kv [1 ] + ";"
285
+ }
286
+ }
287
+ }
288
+ return r , nil
289
+ }
290
+
291
+ func (nc nsCollector ) splitInfo (s map [string ]string , ns string ) (map [string ]string , map [string ]string , map [string ]string ) {
292
+ ns_metrics := map [string ]string {}
293
+ ns_storage_metrics := map [string ]string {}
294
+ ns_storage_devices := map [string ]string {}
295
+
296
+ for _ , l := range strings .Split (s ["namespace/" + ns ], ";" ) {
297
+ for _ , v := range strings .Split (l , ":" ) {
298
+ kv := strings .SplitN (v , "=" , 2 )
299
+ if strings .HasPrefix (kv [0 ], "storage-engine" ) {
300
+ ns_storage_metrics ["namespace/" + ns ] += v + ";"
301
+ if strings .HasSuffix (kv [0 ], "]" ) {
302
+ ns_storage_devices [kv [1 ]] = kv [0 ]
303
+ }
304
+ } else {
305
+ ns_metrics ["namespace/" + ns ] += v + ";"
306
+ }
307
+ }
308
+ }
309
+ return ns_storage_metrics , ns_metrics , ns_storage_devices
310
+ }
311
+
258
312
func (nc nsCollector ) collect (conn * as.Connection ) ([]prometheus.Metric , error ) {
259
313
info , err := as .RequestInfo (conn , "namespaces" )
260
314
if err != nil {
@@ -266,10 +320,21 @@ func (nc nsCollector) collect(conn *as.Connection) ([]prometheus.Metric, error)
266
320
if err != nil {
267
321
return nil , err
268
322
}
323
+
324
+ nsinfo_storage , nsinfo_standart , nsinfo_devices := nc .splitInfo (nsinfo ,ns )
325
+
269
326
metrics = append (
270
327
metrics ,
271
- infoCollect (cmetrics (nc ), nsinfo ["namespace/" + ns ], ns )... ,
328
+ infoCollect (cmetrics (nc ), nsinfo_standart ["namespace/" + ns ], ns )... ,
272
329
)
330
+
331
+ for name , metric := range nsinfo_devices {
332
+ nsinfo_storage ["namespace/" + ns ], err = nc .parseStorage (nsinfo_storage ["namespace/" + ns ], metric )
333
+ metrics = append (
334
+ metrics ,
335
+ infoCollect (cmetrics (nc ), nsinfo_storage ["namespace/" + ns ], ns , name )... ,
336
+ )
337
+ }
273
338
}
274
339
return metrics , nil
275
340
}
0 commit comments