Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit 6b91a7a

Browse files
author
Andrey Vazhenin
committed
DMP-3004: added storage-level metrics
1 parent 46ba280 commit 6b91a7a

File tree

1 file changed

+71
-6
lines changed

1 file changed

+71
-6
lines changed

namespaces.go

+71-6
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ var (
9090
counter("client_write_error", "client write error"),
9191
counter("client_write_success", "client write success"),
9292
counter("client_write_timeout", "client write timeout"),
93-
counter("defrag_reads", "defrag reads"),
94-
counter("defrag_writes", "defrag writes"),
9593
counter("evicted_objects", "evicted objects"),
9694
counter("expired_objects", "expired objects"),
9795
counter("fail_generation", "fail generation"),
@@ -166,7 +164,6 @@ var (
166164
counter("xdr_write_success", "xdr write success"),
167165
counter("xdr_write_timeout", "xdr write timeout"),
168166
gauge("available_bin_names", "available bin names"),
169-
// broken gauge("defrag_q", "defrag queue"),
170167
gauge("device_available_pct", "device available pct"),
171168
gauge("device_compression_ratio", "device compression ratio"),
172169
gauge("device_free_pct", "device free pct"),
@@ -216,7 +213,6 @@ var (
216213
gauge("prole_objects", "prole objects"),
217214
gauge("prole_tombstones", "prole tombstones"),
218215
gauge("replication-factor", "replication factor"),
219-
// broken gauge("shadow_write_q", "shadow write queue"),
220216
gauge("stop_writes", "stop writes"),
221217
gauge("stop-writes-pct", "stop writes pct"),
222218
gauge("tombstones", "tombstones"),
@@ -225,10 +221,17 @@ var (
225221
gauge("dead_partitions", "dead partitions"),
226222
gauge("unavailable_partitions", "unavailable partitions"),
227223
gauge("rack-id", "rack id"),
228-
// gauge("write_q", "write queue"),
229224
// device-level stats don't appear to work
230225
// and this plugin thinks "storage-engine.device[0].write_q" is malformed.
231226
}
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+
}
232235
)
233236

234237
type nsCollector cmetrics
@@ -246,6 +249,18 @@ func newNSCollector() nsCollector {
246249
),
247250
}
248251
}
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+
249264
return ns
250265
}
251266

@@ -255,6 +270,45 @@ func (nc nsCollector) describe(ch chan<- *prometheus.Desc) {
255270
}
256271
}
257272

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+
258312
func (nc nsCollector) collect(conn *as.Connection) ([]prometheus.Metric, error) {
259313
info, err := as.RequestInfo(conn, "namespaces")
260314
if err != nil {
@@ -266,10 +320,21 @@ func (nc nsCollector) collect(conn *as.Connection) ([]prometheus.Metric, error)
266320
if err != nil {
267321
return nil, err
268322
}
323+
324+
nsinfo_storage, nsinfo_standart, nsinfo_devices := nc.splitInfo(nsinfo,ns)
325+
269326
metrics = append(
270327
metrics,
271-
infoCollect(cmetrics(nc), nsinfo["namespace/"+ns], ns)...,
328+
infoCollect(cmetrics(nc), nsinfo_standart["namespace/"+ns], ns)...,
272329
)
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+
}
273338
}
274339
return metrics, nil
275340
}

0 commit comments

Comments
 (0)