1
1
package main
2
2
3
3
import (
4
- "strings"
5
4
"bytes"
5
+ "strings"
6
6
7
7
as "github.com/aerospike/aerospike-client-go"
8
8
"github.com/prometheus/client_golang/prometheus"
@@ -226,12 +226,11 @@ var (
226
226
// and this plugin thinks "storage-engine.device[0].write_q" is malformed.
227
227
}
228
228
NamespaceStorageMetrics = []metric {
229
- counter ("defrag_reads" , "defrag reads" ),
229
+ counter ("defrag_reads" , "defrag reads" ),
230
230
counter ("defrag_writes" , "defrag writes" ),
231
- gauge ("shadow_write_q" , "shadow write queue" ),
231
+ gauge ("shadow_write_q" , "shadow write queue" ),
232
232
gauge ("defrag_q" , "defrag queue" ),
233
- gauge ("write_q" , "write queue" ),
234
-
233
+ gauge ("write_q" , "write queue" ),
235
234
}
236
235
)
237
236
@@ -273,45 +272,45 @@ func (nc nsCollector) describe(ch chan<- *prometheus.Desc) {
273
272
274
273
func (nc nsCollector ) parseStorage (s string , d string ) (string , error ) {
275
274
buf := bytes.Buffer {}
276
- for _ , l := range strings .Split (s , ";" ) {
275
+ for _ , l := range strings .Split (s , ";" ) {
277
276
for _ , v := range strings .Split (l , ":" ) {
278
277
kv := strings .SplitN (v , "=" , 2 )
279
278
if len (kv ) > 1 {
280
- if strings .HasPrefix (kv [0 ], d ) {
281
- //todo: optimize
282
- kv [0 ] = strings .Replace (kv [0 ] + "." , d , "" , 1 )
283
- kv [0 ] = strings .Replace (kv [0 ], "." , "" , - 1 )
284
- }
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
+ }
285
284
buf .WriteString (kv [0 ] + "=" + kv [1 ] + ";" )
286
285
}
287
286
}
288
287
}
289
288
r := buf .String ()
290
- return r , nil
289
+ return r , nil
291
290
}
292
291
293
292
func (nc nsCollector ) splitInfo (s string ) (string , string , map [string ]string ) {
294
- nsStorageMounts := map [string ]string {}
293
+ nsStorageMounts := map [string ]string {}
295
294
296
- bufStandardMetrics := bytes.Buffer {}
295
+ bufStandardMetrics := bytes.Buffer {}
297
296
bufStorageMetrics := bytes.Buffer {}
298
297
299
- for _ , l := range strings .Split (s , ";" ) {
298
+ for _ , l := range strings .Split (s , ";" ) {
300
299
for _ , v := range strings .Split (l , ":" ) {
301
300
kv := strings .SplitN (v , "=" , 2 )
302
301
if strings .HasPrefix (kv [0 ], "storage-engine" ) {
303
302
bufStorageMetrics .WriteString (v + ";" )
304
- if strings .HasSuffix (kv [0 ], "]" ) {
305
- nsStorageMounts [kv [1 ]] = kv [0 ]
306
- }
303
+ if strings .HasSuffix (kv [0 ], "]" ) {
304
+ nsStorageMounts [kv [1 ]] = kv [0 ]
305
+ }
307
306
} else {
308
307
bufStandardMetrics .WriteString (v + ";" )
309
308
}
310
309
}
311
310
}
312
311
nsStandardMetrics := bufStandardMetrics .String ()
313
312
nsStorageMetrics := bufStorageMetrics .String ()
314
- return nsStorageMetrics , nsStandardMetrics , nsStorageMounts
313
+ return nsStorageMetrics , nsStandardMetrics , nsStorageMounts
315
314
}
316
315
317
316
func (nc nsCollector ) collect (conn * as.Connection ) ([]prometheus.Metric , error ) {
@@ -333,13 +332,13 @@ func (nc nsCollector) collect(conn *as.Connection) ([]prometheus.Metric, error)
333
332
infoCollect (cmetrics (nc ), nsInfoStandard , ns )... ,
334
333
)
335
334
336
- for mountName , metricName := range nsInfoStorageDevices {
337
- nsInfoStorage , err = nc .parseStorage (nsInfoStorage , metricName )
338
- metrics = append (
339
- metrics ,
340
- infoCollect (cmetrics (nc ), nsInfoStorage , ns , mountName )... ,
341
- )
342
- }
335
+ for mountName , metricName := range nsInfoStorageDevices {
336
+ nsInfoStorage , err = nc .parseStorage (nsInfoStorage , metricName )
337
+ metrics = append (
338
+ metrics ,
339
+ infoCollect (cmetrics (nc ), nsInfoStorage , ns , mountName )... ,
340
+ )
341
+ }
343
342
}
344
343
return metrics , nil
345
344
}
0 commit comments