Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@

#### Bugfixes

### OpAMP Data Model

#### Enhancements

- Add initial data model for agent identify with OpAMP.
[#379](https://github.com/signalfx/gdi-specification/pull/379)

## [1.9.0] - 2026-04-07

### Configuration
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The following specification sections are currently in scope:
- [Semantic Conventions](specification/semantic_conventions.md)
- [Repository](specification/repository.md)
- [Versioning](specification/versioning.md)
- [OpAMP Data Model](specification/opamp_datamodel.md)

GDI repositories MUST adopt GDI specification changes by their next `MINOR` release
and within three months (whichever is sooner). The GDI specification and GDI
Expand Down
25 changes: 25 additions & 0 deletions specification/opamp_datamodel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# OpAMP Data Model

**Status**: [Experimental](../README.md#versioning-and-status-of-the-specification)

This document describes data model fields used by *language agents*
when configured to communicate with an OpAMP server. For more information
about OpAMP, please see the
[opamp-spec](https://github.com/open-telemetry/opamp-spec).

## Identifying Attributes

The `AgentDescription` message includes a set of
[identifying attributes](https://github.com/open-telemetry/opamp-spec/blob/main/specification.md#agentdescriptionidentifying_attributes).

This set of identifying attributes MUST be comprised, in its entirety,
of the Agent's resource attributes. All detected or configured
resource attributes MUST be present in the identifying attributes.
The identifying attributes MUST NOT contain any other attributes
that are not obtained from the current Resource.

## Non-Identifying Attributes

The `AgentDescription` message includes a set of
[non-identifying attributes](https://github.com/open-telemetry/opamp-spec/blob/main/specification.md#agentdescriptionnon_identifying_attributes).
Agents SHOULD NOT specify any non-identifying attributes.
Loading