summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-10-22 09:47:09 +0200
committerGitHub <noreply@github.com>2021-10-22 09:47:09 +0200
commit720e14be4da9613ed8fda193bf2571a2f163d6a1 (patch)
tree71b1710898aa996921b0f88e72fa72d62c9d456d
parent86e9a67362a9e8de7a4a267f6450b41cc60be290 (diff)
Update searchcore/src/vespa/searchcore/proton/metrics/executor_metrics.cpp
Co-authored-by: Geir Storli <geirst@yahooinc.com>
-rw-r--r--searchcore/src/vespa/searchcore/proton/metrics/executor_metrics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/metrics/executor_metrics.cpp b/searchcore/src/vespa/searchcore/proton/metrics/executor_metrics.cpp
index 789e97138e0..3c98857242f 100644
--- a/searchcore/src/vespa/searchcore/proton/metrics/executor_metrics.cpp
+++ b/searchcore/src/vespa/searchcore/proton/metrics/executor_metrics.cpp
@@ -22,7 +22,7 @@ ExecutorMetrics::ExecutorMetrics(const std::string &name, metrics::MetricSet *pa
accepted("accepted", {}, "Number of accepted tasks", this),
rejected("rejected", {}, "Number of rejected tasks", this),
wakeupCount("wakeupCount", {}, "Number of times a worker thread has been woken up", this),
- util("utilization", {}, "ratio of time the worker threads has been active", this),
+ util("utilization", {}, "Ratio of time the worker threads has been active", this),
queueSize("queuesize", {}, "Size of task queue", this)
{
}