-
Notifications
You must be signed in to change notification settings - Fork 458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor OpAMP bridge logging and configuration #2196
Merged
jaronoff97
merged 12 commits into
open-telemetry:main
from
jaronoff97:refactor-bridge-config
Oct 11, 2023
Merged
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2b46902
refactor config and logging
jaronoff97 42c4fa7
Add changelog
jaronoff97 7608043
small refactor for tests
jaronoff97 fee2e26
:facepalm:
jaronoff97 2ffb9c8
update testing... add bad test
jaronoff97 d384e3a
Merge branch 'main' of github.com:open-telemetry/opentelemetry-operat…
jaronoff97 682f6c2
update config struct too
jaronoff97 2dc1a3e
update chlog
jaronoff97 90dba6c
Merge branch 'main' into refactor-bridge-config
jaronoff97 e6a14d4
feedback rfixes
jaronoff97 b2b55b6
Merge branch 'refactor-bridge-config' of github.com:jaronoff97/opente…
jaronoff97 5253fc9
better comment
jaronoff97 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
change_type: breaking | ||
|
||
# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action) | ||
component: OpAMP Bridge | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: This PR simplifies the bridge's configuration and logging by renaming and removing fields. | ||
|
||
# One or more tracking issues related to the change | ||
issues: [1368] | ||
|
||
# (Optional) One or more lines of additional information to render under the primary note. | ||
# These lines will be padded with 2 spaces and then inserted directly into the document. | ||
# Use pipe (|) for multiline entries. | ||
subtext: | | ||
`components_allowed` => `componentsAllowed` | ||
:x: `protocol` which is now inferred from endpoint | ||
capabilities `[]string` => `map[Capability]bool` for enhanced configuration validation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
endpoint: ws://127.0.0.1:4320/v1/opamp | ||
protocol: wss | ||
capabilities: | ||
- AcceptsRemoteConfig | ||
- ReportsEffectiveConfig | ||
# - AcceptsPackages | ||
# - ReportsPackageStatuses | ||
- ReportsOwnTraces | ||
- ReportsOwnMetrics | ||
- ReportsOwnLogs | ||
- AcceptsOpAMPConnectionSettings | ||
- AcceptsOtherConnectionSettings | ||
- AcceptsRestartCommand | ||
- ReportsHealth | ||
- ReportsRemoteConfig | ||
AcceptsRemoteConfig: true | ||
ReportsEffectiveConfig: true | ||
AcceptsPackages: false | ||
ReportsPackageStatuses: false | ||
ReportsOwnTraces: true | ||
ReportsOwnMetrics: true | ||
ReportsOwnLogs: true | ||
AcceptsOpAMPConnectionSettings: true | ||
AcceptsOtherConnectionSettings: true | ||
AcceptsRestartCommand: true | ||
ReportsHealth: true | ||
ReportsRemoteConfig: true |
27 changes: 13 additions & 14 deletions
27
cmd/operator-opamp-bridge/agent/testdata/agentbasiccomponentsallowed.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 13 additions & 14 deletions
27
cmd/operator-opamp-bridge/agent/testdata/agentbatchnotallowed.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what does
:x:
mean? Does it mean that is has been removed?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes