From 808917457e973c251fd6c968bbb2b9dd38cb9f3d Mon Sep 17 00:00:00 2001 From: Andy Keller Date: Wed, 30 Oct 2024 22:18:04 -0400 Subject: [PATCH] mark Status: [Development] --- proto/opamp.proto | 7 ++++--- specification.md | 4 +--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/proto/opamp.proto b/proto/opamp.proto index 89696ba..95d7829 100644 --- a/proto/opamp.proto +++ b/proto/opamp.proto @@ -149,7 +149,7 @@ message CertificateRequest { bytes csr = 1; } -// AvailableComponents contains metadata relating to the components included +// AvailableComponents contains metadata relating to the components included // within the agent. // status: [Development] message AvailableComponents { @@ -172,7 +172,7 @@ message ComponentDetails { // For example, you may use the "code" semantic conventions to // report the location of the code for a specific component: // https://opentelemetry.io/docs/specs/semconv/attributes-registry/code/ - // + // // Or you may use the "vcs" semantic conventions to report the // repository the component may be a part of: // https://opentelemetry.io/docs/specs/semconv/attributes-registry/vcs/ @@ -256,6 +256,7 @@ enum ServerToAgentFlags { // not include the full AvailableComponents message, but only the hash. // If this flag is specified, the agent will populate available_components.components // with a full description of the agent's components. + // Status: [Development] ServerToAgentFlags_ReportAvailableComponents = 0x00000002; } @@ -709,7 +710,7 @@ enum AgentCapabilities { // Status: [Development] AgentCapabilities_ReportsHeartbeat = 0x00002000; // The agent will report AvailableComponents via the AgentToServer.available_components field. - // Status: [Development] + // Status: [Development] AgentCapabilities_ReportsAvailableComponents = 0x00004000; // Add new capabilities here, continuing with the least significant unused bit. } diff --git a/specification.md b/specification.md index 1c83818..5593e73 100644 --- a/specification.md +++ b/specification.md @@ -3004,8 +3004,6 @@ and may be omitted if the hash has not changed from its previous value. #### ComponentDetails Message -Status: [Beta] - The ComponentDetails messaged describes a component of the Agent. The structure of ComponentDetails DOES NOT need to be a 1-to-1 match with @@ -3019,7 +3017,7 @@ The ComponentDetails message has the following structure: ```protobuf message ComponentDetails { repeated KeyValue metadata = 1; - map sub_component_map = 2; + map sub_component_map = 2; } ```