aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-03-02 13:33:19 +0100
committerJon Marius Venstad <venstad@gmail.com>2021-03-02 13:33:19 +0100
commit33f8029906d75497e2f1412f5392d9054e64ed3a (patch)
treebd20d298c1ba0c68703a71b5deeb78f1815a6cea /clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java
parente1a6e35483ed567584b4fbc7e65e4c9e01b30ef1 (diff)
Use (override, really) the clusterid dimension in CCs content metrics
Diffstat (limited to 'clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java')
-rw-r--r--clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java b/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java
index 68b5bf103a6..19b73e4194f 100644
--- a/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java
+++ b/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/MetricReporterTest.java
@@ -43,14 +43,15 @@ public class MetricReporterTest {
// Dimensions that are always present
HasMetricContext.Dimension controllerDim = withDimension("controller-index", "0");
HasMetricContext.Dimension clusterDim = withDimension("cluster", "foo");
- return new HasMetricContext.Dimension[] { controllerDim, clusterDim };
+ HasMetricContext.Dimension clusteridDim = withDimension("clusterid", "foo");
+ return new HasMetricContext.Dimension[] { controllerDim, clusterDim, clusteridDim };
}
private static HasMetricContext.Dimension[] withNodeTypeDimension(String type) {
// Node type-specific dimension
HasMetricContext.Dimension nodeType = withDimension("node-type", type);
var otherDims = withClusterDimension();
- return new HasMetricContext.Dimension[] { otherDims[0], otherDims[1], nodeType };
+ return new HasMetricContext.Dimension[] { otherDims[0], otherDims[1], otherDims[2], nodeType };
}
@Test