summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-09-17 12:39:24 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-09-17 12:39:24 +0000
commit47ce5562ab0d740b50fc6e0d54abd090c6ae046e (patch)
tree348238791efdcb782e6f0d14e13077748a9692a4 /config-model
parentfb4b666e78d936d0f6aadcc4f74cf208e8056776 (diff)
Expose all '*.accepted.rate' executor metrics.
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/admin/monitoring/VespaMetricSet.java12
1 files changed, 12 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 6d6997b5bdf..f82e9d7bec7 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
@@ -330,11 +330,17 @@ public class VespaMetricSet {
// Executors shared between all document dbs
metrics.add(new Metric("content.proton.executor.proton.maxpending.last"));
+ metrics.add(new Metric("content.proton.executor.proton.accepted.rate"));
metrics.add(new Metric("content.proton.executor.flush.maxpending.last"));
+ metrics.add(new Metric("content.proton.executor.flush.accepted.rate"));
metrics.add(new Metric("content.proton.executor.match.maxpending.last"));
+ metrics.add(new Metric("content.proton.executor.match.accepted.rate"));
metrics.add(new Metric("content.proton.executor.docsum.maxpending.last"));
+ metrics.add(new Metric("content.proton.executor.docsum.accepted.rate"));
metrics.add(new Metric("content.proton.executor.shared.maxpending.last"));
+ metrics.add(new Metric("content.proton.executor.shared.accepted.rate"));
metrics.add(new Metric("content.proton.executor.warmup.maxpending.last"));
+ metrics.add(new Metric("content.proton.executor.warmup.accepted.rate"));
// jobs
metrics.add(new Metric("content.proton.documentdb.job.total.average"));
@@ -349,11 +355,17 @@ public class VespaMetricSet {
// Threading service (per document db)
metrics.add(new Metric("content.proton.documentdb.threading_service.master.maxpending.last"));
+ metrics.add(new Metric("content.proton.documentdb.threading_service.master.accepted.rate"));
metrics.add(new Metric("content.proton.documentdb.threading_service.index.maxpending.last"));
+ metrics.add(new Metric("content.proton.documentdb.threading_service.index.accepted.rate"));
metrics.add(new Metric("content.proton.documentdb.threading_service.summary.maxpending.last"));
+ metrics.add(new Metric("content.proton.documentdb.threading_service.summary.accepted.rate"));
metrics.add(new Metric("content.proton.documentdb.threading_service.index_field_inverter.maxpending.last"));
+ metrics.add(new Metric("content.proton.documentdb.threading_service.index_field_inverter.accepted.rate"));
metrics.add(new Metric("content.proton.documentdb.threading_service.index_field_writer.maxpending.last"));
+ metrics.add(new Metric("content.proton.documentdb.threading_service.index_field_writer.accepted.rate"));
metrics.add(new Metric("content.proton.documentdb.threading_service.attribute_field_writer.maxpending.last"));
+ metrics.add(new Metric("content.proton.documentdb.threading_service.attribute_field_writer.accepted.rate"));
// lid space
metrics.add(new Metric("content.proton.documentdb.ready.lid_space.lid_bloat_factor.average"));