summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@vespa.ai>2023-11-02 15:25:20 +0000
committerTor Brede Vekterli <vekterli@vespa.ai>2023-11-02 15:25:20 +0000
commite422e0f022f726f16600e9f8c2ed767c217e2b8d (patch)
treed232acd180abc124f2b32328ed243855b1ece963 /storage
parent756ac9de004347d2d5b8893b43c37eb6ac930560 (diff)
Specify metric unit in description string
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/storageserver/mergethrottler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/src/vespa/storage/storageserver/mergethrottler.cpp b/storage/src/vespa/storage/storageserver/mergethrottler.cpp
index 82bd5ff7ace..b341c676fc9 100644
--- a/storage/src/vespa/storage/storageserver/mergethrottler.cpp
+++ b/storage/src/vespa/storage/storageserver/mergethrottler.cpp
@@ -68,8 +68,8 @@ MergeThrottler::Metrics::Metrics(metrics::MetricSet* owner)
queueSize("queuesize", {}, "Length of merge queue", this),
active_window_size("active_window_size", {}, "Number of merges active within the pending window size", this),
estimated_merge_memory_usage("estimated_merge_memory_usage", {}, "An estimated upper bound of the "
- "memory usage of the merges currently in the active window", this),
- merge_memory_limit("merge_memory_limit", {}, "The active soft limit for memory used by merge operations on this node", this),
+ "memory usage (in bytes) of the merges currently in the active window", this),
+ merge_memory_limit("merge_memory_limit", {}, "The active soft limit (in bytes) for memory used by merge operations on this node", this),
bounced_due_to_back_pressure("bounced_due_to_back_pressure", {}, "Number of merges bounced due to resource exhaustion back-pressure", this),
chaining("mergechains", this),
local("locallyexecutedmerges", this)