Skip to content

Commit

Permalink
mark Status: [Development]
Browse files Browse the repository at this point in the history
  • Loading branch information
andykellr committed Oct 31, 2024
1 parent ed37d51 commit 8089174
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 4 additions & 3 deletions proto/opamp.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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/
Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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.
}
Expand Down
4 changes: 1 addition & 3 deletions specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -3019,7 +3017,7 @@ The ComponentDetails message has the following structure:
```protobuf
message ComponentDetails {
repeated KeyValue metadata = 1;
map<string, ComponentDetails> sub_component_map = 2;
map<string, ComponentDetails> sub_component_map = 2;
}
```

Expand Down

0 comments on commit 8089174

Please sign in to comment.