summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2023-03-21 10:17:20 +0100
committerGitHub <noreply@github.com>2023-03-21 10:17:20 +0100
commit76514eafee98e8f5a8294ee5c56a75205e5b6e6a (patch)
tree8102cd5e0c72d63df17d3dc63d4767ddc94df6cb /container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java
parent33eeb6ed96722baa0cdc05c8e0d38ed01bacb4ca (diff)
parent305e1973ffb8930f1f8751d1a918f5ee1d5de222 (diff)
Merge pull request #26505 from vespa-engine/yngveaasheim/add-description-to-unitsv8.143.4
Add description to units
Diffstat (limited to 'container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java')
-rw-r--r--container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java b/container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java
index c39054c878c..b36abbdf211 100644
--- a/container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java
+++ b/container-core/src/main/java/com/yahoo/metrics/SearchNodeMetrics.java
@@ -146,7 +146,7 @@ public enum SearchNodeMetrics implements VespaMetrics {
CONTENT_PROTON_RESOURCE_USAGE_MEMORY_USAGE_TOTAL("content.proton.resource_usage.memory_usage.total", Unit.FRACTION, "The total relative amount of memory used by this content node (value in the range [0, 1])"),
CONTENT_PROTON_RESOURCE_USAGE_MEMORY_USAGE_TOTAL_UTILIZATION("content.proton.resource_usage.memory_usage.total_utilization", Unit.FRACTION, "The relative amount of memory used compared to the content node memory resource limit"),
CONTENT_PROTON_RESOURCE_USAGE_MEMORY_USAGE_TRANSIENT("content.proton.resource_usage.memory_usage.transient", Unit.FRACTION, "The relative amount of transient memory used by this content node (value in the range [0, 1])"),
- CONTENT_PROTON_RESOURCE_USAGE_MEMORY_MAPPINGS("content.proton.resource_usage.memory_mappings", Unit.AREA, "The number of mapped memory areas"),
+ CONTENT_PROTON_RESOURCE_USAGE_MEMORY_MAPPINGS("content.proton.resource_usage.memory_mappings", Unit.FILE, "The number of memory mapped files"),
CONTENT_PROTON_RESOURCE_USAGE_OPEN_FILE_DESCRIPTORS("content.proton.resource_usage.open_file_descriptors", Unit.FILE, "The number of open files"),
CONTENT_PROTON_RESOURCE_USAGE_FEEDING_BLOCKED("content.proton.resource_usage.feeding_blocked", Unit.BINARY, "Whether feeding is blocked due to resource limits being reached (value is either 0 or 1)"),
CONTENT_PROTON_RESOURCE_USAGE_MALLOC_ARENA("content.proton.resource_usage.malloc_arena", Unit.BYTE, "Size of malloc arena"),