-
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
[translator/zipkin] stop dropping error tags in Zipkin translator #24547
[translator/zipkin] stop dropping error tags in Zipkin translator #24547
Conversation
9eab4e7
to
1e18ea3
Compare
1e18ea3
to
beec384
Compare
I realise I'm dropping out of nowhere, but this is a simple issue that is completely blocking anyone who Zipkin format spans. |
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 follows the original bug fix proposal from what I can tell, so it LGTM.
Also, I wrote some tests that failed with the original issue before your change, and now work as expected after. You're welcome to pull those in for this PR, and someone else can review those changes as well.
As a result of the effort to move metrics in the k8s cluster receiver to use the pdata format instead of OpenCensus, some helper methods are now unused. This change removes unused code.
…y#24454) **Description:** Follow up of open-telemetry#24404, some changes occurred in the last week or I had misses in translating the CODEOWNERS file over. Those minute changes fix that and prepare for the script to generate `.github/CODEOWNERS`.
beec384
to
4867562
Compare
Thank you so much @crobert-1 ! |
Is there any way this can be included in the next release? |
Please add a changelog entry. |
Done! Is there a regular release cadence or something, so I know when to expect the release? |
Releases are generally created every two weeks or so, but there isn't a set schedule. Here are all of the releases for historic context. |
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.
LGTM, I would ask a codeowner of the package to review as well.
@MovieStoreGuy @astencel-sumo, if you could review this within the next few hours, we can include it on this week's release. One code owner has approved this already (@crobert-1), but it would still be good to have more approvals :-) |
Description:
Fixing a bug - Stop dropping error tags from Zipkin spans. The old code removes all errors from those spans, rendering them useless if an actual error happened. In addition, no longer delete error tags if they contain useful information. This now only deletes them if they are "true", and thus don't contain useful information. Also fixes the whole issue of
Link to tracking Issue: #16530
Testing: Absolutely none, I have written no Go code before this and have not even run the code.
I'm hoping CI saves me the trouble of installing and running everything locally