summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-08-22 14:02:17 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2019-08-22 14:02:17 +0200
commite2f21822b2b32977c4a614fc6f30a95f77c6b068 (patch)
treef1fb23316caaa949555e4d7e28ce5d822ed0dbec
parent18a87fa2cfe385c758b9d92a71d85e5f030581fc (diff)
Expose backend metrics for soft_doom_factor.
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/admin/monitoring/VespaMetricSet.java8
1 files changed, 8 insertions, 0 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 0c0701983a4..970d03689ab 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
@@ -413,6 +413,10 @@ public class VespaMetricSet {
// matching
metrics.add(new Metric("content.proton.documentdb.matching.queries.rate"));
metrics.add(new Metric("content.proton.documentdb.matching.soft_doomed_queries.rate"));
+ metrics.add(new Metric("content.proton.documentdb.matching.soft_doom_factor.min"));
+ metrics.add(new Metric("content.proton.documentdb.matching.soft_doom_factor.max"));
+ metrics.add(new Metric("content.proton.documentdb.matching.soft_doom_factor.sum"));
+ metrics.add(new Metric("content.proton.documentdb.matching.soft_doom_factor.count"));
metrics.add(new Metric("content.proton.documentdb.matching.query_latency.max"));
metrics.add(new Metric("content.proton.documentdb.matching.query_latency.sum"));
metrics.add(new Metric("content.proton.documentdb.matching.query_latency.count"));
@@ -424,6 +428,10 @@ public class VespaMetricSet {
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.soft_doomed_queries.rate"));
+ metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.soft_doom_factor.min"));
+ metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.soft_doom_factor.max"));
+ metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.soft_doom_factor.sum"));
+ metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.soft_doom_factor.count"));
metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.query_latency.max"));
metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.query_latency.sum"));
metrics.add(new Metric("content.proton.documentdb.matching.rank_profile.query_latency.count"));