-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Pass version (& other app info) into components in params struct #1582
Pass version (& other app info) into components in params struct #1582
Conversation
|
||
// ApplicationStartInfo is the information that is logged at the application start and | ||
// passed into each component. This information can be overridden in custom builds. | ||
type ApplicationStartInfo struct { |
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.
If we are passing this info into each component, I thought it makes sense to move the struct here. Technically this is a breaking change, but very minor
Codecov Report
@@ Coverage Diff @@
## master #1582 +/- ##
==========================================
+ Coverage 91.86% 91.90% +0.03%
==========================================
Files 254 255 +1
Lines 17486 17510 +24
==========================================
+ Hits 16064 16092 +28
+ Misses 1014 1012 -2
+ Partials 408 406 -2
Continue to review full report at Codecov.
|
da7c2fb
to
e786184
Compare
e786184
to
6293232
Compare
5e0b62a
to
f7ee02d
Compare
Please rebase |
a509543
to
5358f1d
Compare
Link to tracking Issue: #1559
Update service pipeline to pass ApplicationInfo into all new components as part of the
CreateParams
structs.Example Usage: open-telemetry/opentelemetry-collector-contrib#758