aboutsummaryrefslogtreecommitdiffstats
path: root/metrics
diff options
context:
space:
mode:
authorOla Aunrønning <olaa@yahooinc.com>2024-02-05 12:57:06 +0100
committerGitHub <noreply@github.com>2024-02-05 12:57:06 +0100
commitd45399e3ab1d07781f71473e4a8fe2b67b197941 (patch)
tree02a85818f2a6957fcb4f2c5db57a23e10f326a07 /metrics
parent545f30567215d601c3a4d7a757519e88d143396c (diff)
parent62844cb67c4f938f3b914582c19453b279d55f50 (diff)
Merge pull request #30173 from vespa-engine/olaa/log-labels
Add ai.vespa.node
Diffstat (limited to 'metrics')
-rw-r--r--metrics/src/main/java/ai/vespa/metrics/Labels.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/metrics/src/main/java/ai/vespa/metrics/Labels.java b/metrics/src/main/java/ai/vespa/metrics/Labels.java
index 98ab105cd66..dc17d0ada22 100644
--- a/metrics/src/main/java/ai/vespa/metrics/Labels.java
+++ b/metrics/src/main/java/ai/vespa/metrics/Labels.java
@@ -13,11 +13,12 @@ public enum Labels {
CLUSTER("ai.vespa.cluster", "The name of a Vespa cluster."),
CLUSTER_TYPE("ai.vespa.cluster_type", "The type of a Vespa cluster, typically one of 'admin', 'container', 'content'."),
DEPLOYMENT_CLUSTER("ai.vespa.deployment_cluster", "Unique ID for a Vespa deployment cluster, in the format <tenant>.<application>.<instance>.<zone>.<cluster>."),
- INSTANCE_ID("ai.vespa.instance_id", "The id of a Vespa application instance in the format <tenant>.<application>.<instance>."),
+ INSTANCE("ai.vespa.instance", "The id of a Vespa application instance in the format <tenant>.<application>.<instance>."),
GROUP("ai.vespa.group", "The group id of a Vespa content node. Samples values are 'Group 1', 'Group 2', etc."),
SYSTEM("ai.vespa.system", "The name of a managed Vespa system, sample values are 'public', 'publiccd'."),
ZONE("ai.vespa.zone", "The name of a zone in managed Vespa, in the format <environment>.<region>. Sample name 'prod.aws-us-west-2a'."),
PARENT("ai.vespa.parent", "The fully qualified name of the parent host on which a Vespa node is running."),
+ NODE("ai.vespa.node", "The fully qualified name of the Vespa node."),
// Labels used for a subset of the metrics only:
CHAIN("ai.vespa.chain", "The name of a search chain"),