Skip to content

Commit cf10a7e

Browse files
committed
add new kv_store stats
Change-Id: I4f00e8fc908499e57775f8bbcdb5e177d8b54704 Reviewed-on: http://review.couchbase.org/c/perfrunner/+/162212 Tested-by: Build Bot <build@couchbase.com> Reviewed-by: Korrigan Clark <korrigan.clark@couchbase.com>
1 parent d1de07c commit cf10a7e

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

cbagent/collectors/kvstore_stats.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,13 @@ class KVStoreStats(Collector):
9494
"NBloomFilterMissesPerSec",
9595
"NBloomFilterHitsPerSec",
9696
"RecentBlockCacheHitRatio",
97-
"BlockCacheHitRatio"
97+
"BlockCacheHitRatio",
98+
"ReadIOAmpSet",
99+
"RecentReadIOAmpSet",
100+
"NReadBytesSet",
101+
"NReadIOsSet",
102+
"NReadBytesSetPerSec",
103+
"NReadIOsSetPerSec"
98104
)
99105
METRICS_AVERAGE_PER_NODE_PER_SHARD = (
100106
"ReadAmp",
@@ -111,7 +117,9 @@ class KVStoreStats(Collector):
111117
"CompactQueueSize",
112118
"BloomFilterFPR",
113119
"RecentBlockCacheHitRatio",
114-
"BlockCacheHitRatio"
120+
"BlockCacheHitRatio",
121+
"ReadIOAmpSet",
122+
"RecentReadIOAmpSet"
115123
)
116124
NO_CAP = (
117125
"TxnSizeEstimate",
@@ -120,7 +128,9 @@ class KVStoreStats(Collector):
120128
"CompactQueueSize",
121129
"BloomFilterFPR",
122130
"RecentBlockCacheHitRatio",
123-
"BlockCacheHitRatio"
131+
"BlockCacheHitRatio",
132+
"ReadIOAmpSet",
133+
"RecentReadIOAmpSet"
124134
)
125135

126136
def __init__(self, settings, test):

0 commit comments

Comments
 (0)