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

Commit 5a403ab

Browse files
author
Harmen
authored
Merge pull request #27 from Xaelias/master
EE] Add metrics for primary index on flash
2 parents 7c5b788 + 73247b4 commit 5a403ab

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

metric.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ func counter(name string, desc string) metric {
9797

9898
// promkey makes the prom metric name out of an aerospike stat name
9999
func promkey(sys, key string) string {
100-
k := strings.Replace(key, "-", "_", -1)
100+
replacer := strings.NewReplacer("-", "_", ".", "_")
101+
k := replacer.Replace(key)
101102
return namespace + "_" + sys + "_" + k
102103
}

namespaces.go

+4
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,10 @@ var (
199199
gauge("n_nodes_quiesced", "n nodes quiesced"),
200200
gauge("effective_is_quiesced", "effective is quiesced"),
201201
gauge("pending_quiesce", "pending quiesce"),
202+
gauge("index-type.mounts-high-water-pct", "index type mounts high water pct"),
203+
gauge("index-type.mounts-size-limit", "index type mounts size limit"),
204+
gauge("index_flash_used_bytes", "index flash used bytes"),
205+
gauge("index_flash_used_pct", "index flash used pct"),
202206
}
203207
)
204208

0 commit comments

Comments
 (0)