summaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
authorOla Aunrønning <olaa@yahooinc.com>2023-02-14 10:19:13 +0100
committerGitHub <noreply@github.com>2023-02-14 10:19:13 +0100
commite3bc95be87f53ef59459b54d6292d113131dea89 (patch)
treeea11fbe10b08e06dba7b08d4dc46f62e66774d8d /container-core
parent1edff6eaa1b8253c14b4f070f20f5093d823ddde (diff)
parent4bc45a0eb891883f0a7c4ad63d1cedc4b65ebd19 (diff)
Merge pull request #25981 from vespa-engine/olaa/rename-docproc-metrics
Rename docproc metrics
Diffstat (limited to 'container-core')
-rw-r--r--container-core/src/main/java/com/yahoo/metrics/ContainerMetrics.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/container-core/src/main/java/com/yahoo/metrics/ContainerMetrics.java b/container-core/src/main/java/com/yahoo/metrics/ContainerMetrics.java
index 72640310db1..b96f65c4d56 100644
--- a/container-core/src/main/java/com/yahoo/metrics/ContainerMetrics.java
+++ b/container-core/src/main/java/com/yahoo/metrics/ContainerMetrics.java
@@ -126,6 +126,8 @@ public enum ContainerMetrics implements VespaMetrics {
DOCUMENTS_TARGET_TOTAL("documents_target_total", Unit.DOCUMENT, "The target number of total documents to be evaluated when when all data is in sync"),
JDISC_RENDER_LATENCY("jdisc.render.latency", Unit.NANOSECOND, "The time used by the container to render responses"),
QUERY_ITEM_COUNT("query_item_count", Unit.ITEM, "The number of query items (terms, phrases, etc)"),
+ DOCPROC_PROC_TIME("docproc.proctime", Unit.MILLISECOND, "Time spent processing document"),
+ DOCPROC_DOCUMENTS("docproc.documents", Unit.DOCUMENT, "Number of processed documents"),
TOTAL_HITS_PER_QUERY("totalhits_per_query", Unit.HIT_PER_QUERY, "The total number of documents found to match queries"),
EMPTY_RESULTS("empty_results", Unit.OPERATION, "Number of queries matching no documents"),