summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeir Storli <geirstorli@yahoo.no>2018-06-20 16:48:07 +0200
committerGitHub <noreply@github.com>2018-06-20 16:48:07 +0200
commit5258489bf992e8176e136362759ac079494b6f94 (patch)
treef97a4ad00ac37437678b80a4fcacd7e229916635
parenta607f594ea194c1d76da3e239b61988d4c0b5018 (diff)
parent47cd8ea983ddee8e893233721b804fc9de6c6601 (diff)
Merge pull request #6249 from vespa-engine/geirst/correct-name-of-docs-matched-metrics
Correct the name used for *.docs_matched metrics (which are of type L…
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/admin/monitoring/VespaMetricSet.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/admin/monitoring/VespaMetricSet.java b/config-model/src/main/java/com/yahoo/vespa/model/admin/monitoring/VespaMetricSet.java
index c3b1bea0134..978b0de16a0 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/admin/monitoring/VespaMetricSet.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/admin/monitoring/VespaMetricSet.java
@@ -303,11 +303,11 @@ public class VespaMetricSet {
metrics.add(new Metric("content.proton.documentdb.matching.queries.rate"));
metrics.add(new Metric("content.proton.documentdb.matching.query_latency.average"));
metrics.add(new Metric("content.proton.documentdb.matching.query_collateral_time.average"));
- metrics.add(new Metric("content.proton.documentdb.matching.docs_matched.average"));
+ metrics.add(new Metric("content.proton.documentdb.matching.docs_matched.rate"));
metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.queries.rate"));
metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.query_collateral_time.average"));
metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.query_latency.average"));
- metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.docs_matched.average"));
+ metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.docs_matched.rate"));
return metrics;
}