From 5490909c79db90fa8faa96649ad3fccffb2feaa5 Mon Sep 17 00:00:00 2001 From: Florian Lehner Date: Mon, 9 Dec 2024 07:56:53 +0100 Subject: [PATCH] fixup: move comment Signed-off-by: Florian Lehner --- opentelemetry/proto/profiles/v1development/profiles.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/opentelemetry/proto/profiles/v1development/profiles.proto b/opentelemetry/proto/profiles/v1development/profiles.proto index 74d86fca..161da457 100644 --- a/opentelemetry/proto/profiles/v1development/profiles.proto +++ b/opentelemetry/proto/profiles/v1development/profiles.proto @@ -202,10 +202,6 @@ message Profile { // Functions referenced by locations. repeated Function function_table = 6; // Lookup table for attributes. - // The OpenTelemetry API specification further restricts the allowed value types: - // https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/common/README.md#attribute - // Attribute keys MUST be unique (it is not allowed to have more than one - // attribute with the same key). repeated opentelemetry.proto.common.v1.KeyValue attribute_table = 7; // Represents a mapping between Attribute Keys and Units. repeated AttributeUnit attribute_units = 8; @@ -269,6 +265,10 @@ message Profile { // "abc.com/myattribute": true // "abc.com/score": 10.239 // + // The OpenTelemetry API specification further restricts the allowed value types: + // https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/common/README.md#attribute + // Attribute keys MUST be unique (it is not allowed to have more than one + // attribute with the same key). repeated int32 attribute_indices = 22; }