-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
chore: Moves internal/kafka To pkg/kafka #33181
base: main
Are you sure you want to change the base?
chore: Moves internal/kafka To pkg/kafka #33181
Conversation
|
c105da7
to
bc59d5d
Compare
I'm not an approver but thanks for taking this on and I don't see anything to comment on in the PR |
No worries at all, thanks for giving it a look through though! |
c74c952
to
cf6aced
Compare
I noticed that the gen genotelcontribcol check failed and specified the fix is to run
When I run the /Users/t.wicklander-bryant/code/personal/opentelemetry-collector-contrib/.tools/builder --skip-compilation --config cmd/otelcontribcol/builder-config.yaml --output-path cmd/otelcontribcol
Flag --output-path has been deprecated, use config distribution::output_path
2024-05-24T00:01:50.152-0700 INFO internal/command.go:125 OpenTelemetry Collector Builder {"version": "", "date": "unknown"}
2024-05-24T00:01:50.158-0700 INFO internal/command.go:161 Using config file {"path": "cmd/otelcontribcol/builder-config.yaml"}
2024-05-24T00:01:50.158-0700 INFO builder/config.go:132 Using go {"go-executable": "/usr/local/go/bin/go"}
2024-05-24T00:01:50.166-0700 INFO builder/main.go:100 Sources created {"path": "cmd/otelcontribcol"}
2024-05-24T00:01:50.671-0700 INFO builder/main.go:191 Getting go modules
2024-05-24T00:01:50.929-0700 INFO builder/main.go:107 Generating source codes only, the distribution will not be compiled.
/Library/Developer/CommandLineTools/usr/bin/make --no-print-directory -C cmd/otelcontribcol fmt
Makefile:4: warning: overriding commands for target `lint'
../../Makefile.Common:199: warning: ignoring old commands for target `lint'
gofmt -w -s ./
/Users/t.wicklander-bryant/code/personal/opentelemetry-collector-contrib/.tools/goimports -w -local github.com/open-telemetry/opentelemetry-collector-contrib ./ The |
6395010
to
bcbfcfc
Compare
bcbfcfc
to
e403df1
Compare
78b7b3e
to
e87b3e1
Compare
Following up on this as it's stuck awaiting rebase. @wicklander-bryant would you be able to do that or provide me access to your fork repo? |
ceb4e20
to
97bcdc7
Compare
9aa2880
to
0147ae9
Compare
Hello @MovieStoreGuy, @dmitryax, and @TylerHelmuth Could I please get some assistance on getting this PR merged? I've got the necessary approvals but the PR checks are not being started (I can't do this b/c the workflow requires approval from a maintainer). Seeing as you guys are code owners, could one of you please kick off the checks for this PR? Additionally if the checks do pass will I be able to merge this PR or will one of maintainers need to do this? The reason I ask is b/c right next to the Any guidance and help is very much appreciated! |
cccff0e
to
b486ceb
Compare
b486ceb
to
fad072e
Compare
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
I'm afraid this is the reality we all live in. 😟 Can you please resolve conflicts once again and hopefully one of the maintainers will merge this just in time before new conflicts pop up. 🤞 |
fad072e
to
b98ebee
Compare
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
b98ebee
to
2aa7039
Compare
@@ -0,0 +1,1391 @@ | |||
// Code generated by "go.opentelemetry.io/collector/cmd/builder". DO NOT EDIT. |
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.
this file should not be in the source tree.
Description:
Fixing a bug - As described in the github comment here (#27289 (comment)), users will encounter an error when attempting to use the kafka exporter for a custom collector which requires authentication of any kind. This is because the Authentication field is referencing a struct that is in an internal package, see here.
Link to tracking Issue: #33180
Testing: Seeing as this isn't as much of a functional changes as it is an organizational change the existing tests will cover the changes.
Documentation: N/A - This is a smaller organizational change that is not accompanied by documentation.