aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-05-30 23:50:50 +0200
committerGitHub <noreply@github.com>2024-05-30 23:50:50 +0200
commitfd2867fc9a2fdca37eaaeef81da82be50e161ab3 (patch)
tree7843f6974e0d148c1dd37ecd44d15c528c320de3
parent37a2e17c15c6aed7000177c9cfd1e2d9083c169f (diff)
parent3bf0b664b821ed7178c0d939eaa6183eb32bc108 (diff)
Merge pull request #31368 from vespa-engine/vekterli/add-missing-metric-prefix
Add missing metric path prefix to CC metric
-rw-r--r--metrics/src/main/java/ai/vespa/metrics/ClusterControllerMetrics.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/metrics/src/main/java/ai/vespa/metrics/ClusterControllerMetrics.java b/metrics/src/main/java/ai/vespa/metrics/ClusterControllerMetrics.java
index da66d453125..801740c9cf5 100644
--- a/metrics/src/main/java/ai/vespa/metrics/ClusterControllerMetrics.java
+++ b/metrics/src/main/java/ai/vespa/metrics/ClusterControllerMetrics.java
@@ -13,7 +13,7 @@ public enum ClusterControllerMetrics implements VespaMetrics {
STOPPING_COUNT("cluster-controller.stopping.count", Unit.NODE, "Number of content nodes currently stopping"),
UP_COUNT("cluster-controller.up.count", Unit.NODE, "Number of content nodes up"),
CLUSTER_STATE_CHANGE_COUNT("cluster-controller.cluster-state-change.count", Unit.NODE, "Number of nodes changing state"),
- CLUSTER_BUCKETS_OUT_OF_SYNC_RATIO("cluster-buckets-out-of-sync-ratio", Unit.FRACTION, "Ratio of buckets in the cluster currently in need of syncing"),
+ CLUSTER_BUCKETS_OUT_OF_SYNC_RATIO("cluster-controller.cluster-buckets-out-of-sync-ratio", Unit.FRACTION, "Ratio of buckets in the cluster currently in need of syncing"),
BUSY_TICK_TIME_MS("cluster-controller.busy-tick-time-ms", Unit.MILLISECOND, "Time busy"),
IDLE_TICK_TIME_MS("cluster-controller.idle-tick-time-ms", Unit.MILLISECOND, "Time idle"),
WORK_MS("cluster-controller.work-ms", Unit.MILLISECOND, "Time used for actual work"),