summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYngve Aasheim <yngveaasheim@users.noreply.github.com>2023-03-21 09:57:35 +0100
committerGitHub <noreply@github.com>2023-03-21 09:57:35 +0100
commit305e1973ffb8930f1f8751d1a918f5ee1d5de222 (patch)
tree4384ca204a85980321b14def7b7aa32a9e86cb1f
parent686fffa84c52c7df1fcec00701c3703878631dc4 (diff)
Update per comments
-rw-r--r--container-core/src/main/java/com/yahoo/metrics/Unit.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/container-core/src/main/java/com/yahoo/metrics/Unit.java b/container-core/src/main/java/com/yahoo/metrics/Unit.java
index 27817cfb1c2..53c231a2e5e 100644
--- a/container-core/src/main/java/com/yahoo/metrics/Unit.java
+++ b/container-core/src/main/java/com/yahoo/metrics/Unit.java
@@ -12,11 +12,11 @@ public enum Unit {
CONNECTION(BaseUnit.CONNECTION, "A link used for communication between a client and a server"),
DOCUMENT(BaseUnit.DOCUMENT, "Vespa document, a collection of fields defined in a schema file"),
DOCUMENTID(BaseUnit.DOCUMENTID, "A unique document identifier"),
- FAILURE(BaseUnit.FAILURE, "Failures, typically for requests or operations, nodes"),
+ FAILURE(BaseUnit.FAILURE, "Failures, typically for requests, operations or nodes"),
FILE(BaseUnit.FILE, "Data file stored on the disk on a node"),
FRACTION(BaseUnit.FRACTION, "A value in the range [0..1]. Higher values can occur for some metrics, but would indicate the value is outside of the allowed range."),
HIT(BaseUnit.HIT, "Document that meets the filtering/restriction criteria specified by a given query"),
- HIT_PER_QUERY(BaseUnit.HIT, BaseUnit.QUERY, "The aggregate number og hits for each query over a period of time"),
+ HIT_PER_QUERY(BaseUnit.HIT, BaseUnit.QUERY, "Number of hits per query over a period of time"),
INSTANCE(BaseUnit.INSTANCE, "Typically tenant or application"),
ITEM(BaseUnit.ITEM, "Object or unit maintained in e.g. a queue"),
MILLISECOND(BaseUnit.MILLISECOND, "Millisecond, 1/1000 of a second"),